mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 08:15:56 +01:00
fix #196401
This commit is contained in:
1
.vscode/tasks.json
vendored
1
.vscode/tasks.json
vendored
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "watch-clientd",
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user