Skip to content

Commit

Permalink
fixes #91622
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Feb 26, 2020
1 parent 7a13028 commit 438b39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/actions/layoutActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ export class MoveFocusedViewAction extends Action {

const viewDescriptor = this.viewDescriptorService.getViewDescriptor(focusedViewId);
if (!viewDescriptor || !viewDescriptor.canMoveView) {
this.notificationService.error(nls.localize('moveFocusedView.error.nonMovableView', "The currently focused view is not movable {0}.", focusedViewId));
this.notificationService.error(nls.localize('moveFocusedView.error.nonMovableView', "The currently focused view is not movable."));
return Promise.resolve();
}

Expand Down

0 comments on commit 438b39e

Please sign in to comment.