Skip to content

Commit

Permalink
fix(activitybar): add title for the built-in bars
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Sep 14, 2021
1 parent 753fc89 commit f679405
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/model/workbench/activityBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,14 @@ export function builtInActivityBar(): IActivityBar {
{
id: ACTIVITY_BAR_GLOBAL_ACCOUNT,
name: localize('menu.account', 'Account'),
title: localize('menu.account', 'Account'),
icon: 'account',
type: 'global',
},
{
id: ACTIVITY_BAR_GLOBAL_SETTINGS,
name: localize('menu.colorTheme', 'Color Theme'),
name: localize('menu.settings', 'Settings'),
title: localize('menu.settings', 'Settings'),
icon: 'settings-gear',
type: 'global',
contextMenu: [
Expand Down
1 change: 1 addition & 0 deletions src/model/workbench/explorer/explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function builtInExplorerActivityItem() {
id: EXPLORER_ACTIVITY_ITEM,
name: localize(EXPLORER_ACTIVITY_ITEM, 'Explore'),
icon: 'files',
title: localize(EXPLORER_ACTIVITY_ITEM, 'Explore'),
};
}

Expand Down
1 change: 1 addition & 0 deletions src/model/workbench/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export function builtInSearchActivityItem() {
return {
id: SEARCH_ACTIVITY_ITEM,
name: localize(SEARCH_ACTIVITY_ITEM, 'Search'),
title: localize(SEARCH_ACTIVITY_ITEM, 'Search'),
icon: 'search',
};
}
Expand Down

0 comments on commit f679405

Please sign in to comment.