Skip to content

Commit

Permalink
Merge pull request #60080 from mrkno/fix/59323-long-delay-filtering-p…
Browse files Browse the repository at this point in the history
…roblems

Fix #59323 Problems view filters have massive delay
  • Loading branch information
sandy081 authored Oct 29, 2018
2 parents 0fd2ffa + 3b044e9 commit 196b1b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class MarkersFilterActionItem extends BaseActionItem {
) {
super(null, action);
this.focusContextKey = Constants.MarkerPanelFilterFocusContextKey.bindTo(contextKeyService);
this.delayedFilterUpdate = new Delayer<void>(500);
this.delayedFilterUpdate = new Delayer<void>(200);
this._register(toDisposable(() => this.delayedFilterUpdate.cancel()));
}

Expand Down

0 comments on commit 196b1b2

Please sign in to comment.