Skip to content

Commit c367d61

Browse files
committed
1 parent fd913ac commit c367d61

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/contrib/debug/browser/replFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class ReplFilterActionViewItem extends BaseActionViewItem {
113113
@IThemeService private readonly themeService: IThemeService,
114114
@IContextViewService private readonly contextViewService: IContextViewService) {
115115
super(null, action);
116-
this.delayedFilterUpdate = new Delayer<void>(200);
116+
this.delayedFilterUpdate = new Delayer<void>(400);
117117
this._register(toDisposable(() => this.delayedFilterUpdate.cancel()));
118118
}
119119

src/vs/workbench/contrib/markers/browser/markersViewActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export class MarkersFilterActionViewItem extends BaseActionViewItem {
274274
) {
275275
super(null, action);
276276
this.focusContextKey = Constants.MarkerViewFilterFocusContextKey.bindTo(contextKeyService);
277-
this.delayedFilterUpdate = new Delayer<void>(200);
277+
this.delayedFilterUpdate = new Delayer<void>(400);
278278
this._register(toDisposable(() => this.delayedFilterUpdate.cancel()));
279279
this._register(filterController.onDidFocusFilter(() => this.focus()));
280280
this._register(filterController.onDidClearFilterText(() => this.clearFilterText()));

0 commit comments

Comments
 (0)