From 45060913204279d4ecfe0575ca69d68211fb3798 Mon Sep 17 00:00:00 2001 From: SteVen Batten Date: Tue, 25 Jan 2022 17:25:59 -0800 Subject: [PATCH] fixes #141421 --- src/vs/workbench/browser/parts/panel/panelActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/browser/parts/panel/panelActions.ts b/src/vs/workbench/browser/parts/panel/panelActions.ts index 53c08a2fe393a..e7711b150a819 100644 --- a/src/vs/workbench/browser/parts/panel/panelActions.ts +++ b/src/vs/workbench/browser/parts/panel/panelActions.ts @@ -148,7 +148,7 @@ PositionPanelActionConfigs.forEach(positionPanelAction => { const notificationService = accessor.get(INotificationService); const commandService = accessor.get(ICommandService); - notificationService.warn(localize('deprecatedPanelMoveMessage', "Moving the panel with this command has been deprecated in favor of \"Move Views From Panel To Side Panel\" and \"Move Views From Side Panel To Panel\" for similar functionality.")); + notificationService.warn(localize('deprecatedPanelMoveMessage', "Moving the panel with this command has been deprecated in favor of the \"Move Views From Panel To Side Panel\" and \"Move Views From Side Panel To Panel\" commands.")); if (positionPanelAction.value === Position.BOTTOM) { commandService.executeCommand('workbench.action.moveSidePanelToPanel'); } else {