Skip to content

Commit

Permalink
fixes #141421
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Jan 26, 2022
1 parent 246688a commit 4506091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/parts/panel/panelActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4506091

Please sign in to comment.