Skip to content

Commit

Permalink
First-aid for opt-pipeline on clangir
Browse files Browse the repository at this point in the history
  • Loading branch information
OfekShilon authored Oct 1, 2024
1 parent 6924100 commit 709b1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/panes/opt-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export class OptPipeline extends MonacoPane<monaco.editor.IStandaloneDiffEditor,
this.eventHub.emit('requestSettings');
this.emitOptions(true);
this.passesFilter.on('input', _.debounce(this.onFiltersChange.bind(this), 250));
this.updateButtons();
}

upgradeStateFields() {
Expand Down Expand Up @@ -221,7 +222,6 @@ export class OptPipeline extends MonacoPane<monaco.editor.IStandaloneDiffEditor,
this.options.on('change', this.onOptionsChange.bind(this));
this.filters = new Toggles(this.domRoot.find('.filters'), state as unknown as Record<string, boolean>);
this.filters.on('change', this.onOptionsChange.bind(this));
this.updateButtons();

this.passesColumnResizer = this.domRoot.find('.passes-column-resizer');
this.passesColumnResizer.get()[0].addEventListener('mousedown', this.initResizeDrag.bind(this), false);
Expand Down

0 comments on commit 709b1f1

Please sign in to comment.