From de1adedfaac7790ccbc3b64a4c4ab510eb6c74ed Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 23 Aug 2021 17:54:13 +0200 Subject: [PATCH] removed proposed API check for shortTitle, https://github.com/microsoft/vscode/issues/126457 --- src/vs/workbench/api/common/menusExtensionPoint.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/menusExtensionPoint.ts b/src/vs/workbench/api/common/menusExtensionPoint.ts index 59e24b75780..fd4aacc6c7d 100644 --- a/src/vs/workbench/api/common/menusExtensionPoint.ts +++ b/src/vs/workbench/api/common/menusExtensionPoint.ts @@ -626,7 +626,7 @@ commandsExtensionPoint.setHandler(extensions => { id: command, title, source: extension.description.displayName ?? extension.description.name, - shortTitle: extension.description.enableProposedApi ? shortTitle : undefined, + shortTitle, tooltip: extension.description.enableProposedApi ? title : undefined, category, precondition: ContextKeyExpr.deserialize(enablement),