Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorSteVen Batten <6561887+sbatten@users.noreply.github.com>2022-07-28 21:52:52 +0300
committerGitHub <noreply@github.com>2022-07-28 21:52:52 +0300
commit0a65bea3573d503c3078eff3e4b7f26f138e967d (patch)
tree3c86a30c01c3c8b09a0c420a023f9abb41691336 /src/vs
parent35a17f42e89ee15966dbe805d5faed63ec9b34c1 (diff)
allow context menu on command center (#156614)
fixes #156512
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/workbench/browser/parts/titlebar/commandCenterControl.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vs/workbench/browser/parts/titlebar/commandCenterControl.ts b/src/vs/workbench/browser/parts/titlebar/commandCenterControl.ts
index 25e9213343e..3856e6439a2 100644
--- a/src/vs/workbench/browser/parts/titlebar/commandCenterControl.ts
+++ b/src/vs/workbench/browser/parts/titlebar/commandCenterControl.ts
@@ -114,7 +114,8 @@ export class CommandCenterControl {
} else {
return createActionViewItem(instantiationService, action, { hoverDelegate });
}
- }
+ },
+ allowContextMenu: true
});
const menu = this._disposables.add(menuService.createMenu(MenuId.CommandCenter, contextKeyService));
const menuDisposables = this._disposables.add(new DisposableStore());