mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 07:47:23 +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",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
|
|
||||||
{
|
{
|
||||||
"type": "npm",
|
"type": "npm",
|
||||||
"script": "watch-clientd",
|
"script": "watch-clientd",
|
||||||
|
|||||||
@@ -504,12 +504,7 @@ export class AccessibleView extends Disposable {
|
|||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
this._contextViewService.hideContextView();
|
this._contextViewService.hideContextView();
|
||||||
this._updateContextKeys(provider, false);
|
this._updateContextKeys(provider, false);
|
||||||
// HACK: Delay to allow the context view to hide #186514
|
provider.onClose();
|
||||||
if (provider.id === AccessibleViewProviderId.Terminal) {
|
|
||||||
provider.onClose();
|
|
||||||
} else {
|
|
||||||
setTimeout(() => provider.onClose(), 100);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
const disposableStore = new DisposableStore();
|
const disposableStore = new DisposableStore();
|
||||||
disposableStore.add(this._editorWidget.onKeyDown((e) => {
|
disposableStore.add(this._editorWidget.onKeyDown((e) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user