This commit is contained in:
meganrogge
2023-10-25 09:15:51 -07:00
parent 272653c995
commit 128933bbbb
2 changed files with 1 additions and 7 deletions

1
.vscode/tasks.json vendored
View File

@@ -1,7 +1,6 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch-clientd",

View File

@@ -504,12 +504,7 @@ export class AccessibleView extends Disposable {
e.stopPropagation();
this._contextViewService.hideContextView();
this._updateContextKeys(provider, false);
// HACK: Delay to allow the context view to hide #186514
if (provider.id === AccessibleViewProviderId.Terminal) {
provider.onClose();
} else {
setTimeout(() => provider.onClose(), 100);
}
provider.onClose();
};
const disposableStore = new DisposableStore();
disposableStore.add(this._editorWidget.onKeyDown((e) => {