Skip to content

Commit

Permalink
update toggle text in customize layout (#170236)
Browse files Browse the repository at this point in the history
fixes #143829
  • Loading branch information
sbatten committed Dec 29, 2022
1 parent 5421646 commit 8b5e6be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/browser/actions/layoutActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1126,8 +1126,8 @@ const CreateToggleLayoutItem = (id: string, active: ContextKeyExpression, label:
visualIcon,
activeIcon: Codicon.eye,
inactiveIcon: Codicon.eyeClosed,
activeAriaLabel: localize('visible', "Visible"),
inactiveAriaLabel: localize('hidden', "Hidden"),
activeAriaLabel: localize('selectToHide', "Select to Hide"),
inactiveAriaLabel: localize('selectToShow', "Select to Show"),
useButtons: true,
};
};
Expand Down

0 comments on commit 8b5e6be

Please sign in to comment.