From 267aab6b52c117fe971b5fef98b34b6341314f73 Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Thu, 20 Oct 2016 11:05:29 -0700 Subject: [PATCH] Correct ID for toggle action --- .../parts/explorers/browser/treeExplorerActions.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/explorers/browser/treeExplorerActions.contribution.ts b/src/vs/workbench/parts/explorers/browser/treeExplorerActions.contribution.ts index 86785a5ff04..b788e74f7fd 100644 --- a/src/vs/workbench/parts/explorers/browser/treeExplorerActions.contribution.ts +++ b/src/vs/workbench/parts/explorers/browser/treeExplorerActions.contribution.ts @@ -16,7 +16,7 @@ import { IActivityService } from 'vs/workbench/services/activity/common/activity const registry = Registry.as(ActionExtensions.WorkbenchActions); export class ToggleExternalViewletAction extends Action { - public static ID = 'workbench.view.customTreeExplorerViewlet'; + public static ID = 'workbench.action.customTreeExplorer.toggle'; public static LABEL = nls.localize('toggleCustomExplorer', 'Toggle Custom Explorer'); constructor( -- GitLab