We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03960a5 commit 8e5eed1Copy full SHA for 8e5eed1
src/vs/workbench/contrib/preferences/browser/settingsEditor2.ts
@@ -343,7 +343,10 @@ export class SettingsEditor2 extends EditorPane {
343
super.setEditorVisible(visible, group);
344
345
if (!visible) {
346
- this.searchWidget.onHide();
+ // Wait for editor to be removed from DOM #106303
347
+ process.nextTick(() => {
348
+ this.searchWidget.onHide();
349
+ });
350
}
351
352
0 commit comments