mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 10:00:51 +00:00
Settings editor - bump search debounce times
This commit is contained in:
parent
5c63604e2c
commit
e2b722d262
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ export class SettingsEditor2 extends BaseEditor {
|
|||
) {
|
||||
super(SettingsEditor2.ID, telemetryService, themeService);
|
||||
this.delayedFilterLogging = new Delayer<void>(1000);
|
||||
this.localSearchDelayer = new Delayer(100);
|
||||
this.remoteSearchThrottle = new ThrottledDelayer(200);
|
||||
this.localSearchDelayer = new Delayer(300);
|
||||
this.remoteSearchThrottle = new ThrottledDelayer(400);
|
||||
this.viewState = { settingsTarget: ConfigurationTarget.USER };
|
||||
this.delayRefreshOnLayout = new Delayer(100);
|
||||
|
||||
|
|
Loading…
Reference in a new issue