Skip to content

Commit 29ed566

Browse files
committed
fix ordering and rename select icon theme
1 parent e51b11b commit 29ed566

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/vs/workbench/parts/update/electron-browser

src/vs/workbench/parts/update/electron-browser/update.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ export class LightUpdateContribution implements IGlobalActivity {
282282
private static readonly showCommandsId = 'workbench.action.showCommands';
283283
private static readonly openSettingsId = 'workbench.action.openGlobalSettings';
284284
private static readonly openKeybindingsId = 'workbench.action.openGlobalKeybindings';
285-
private static readonly selectIconThemeId = 'workbench.action.selectIconTheme';
286285
private static readonly selectColorThemeId = 'workbench.action.selectTheme';
286+
private static readonly selectIconThemeId = 'workbench.action.selectIconTheme';
287287

288288
get id() { return 'vs.update'; }
289289
get name() { return ''; }
@@ -326,8 +326,8 @@ export class LightUpdateContribution implements IGlobalActivity {
326326
new Action(LightUpdateContribution.openSettingsId, nls.localize('settings', "Settings"), null, true, () => this.commandService.executeCommand(LightUpdateContribution.openSettingsId)),
327327
new Action(LightUpdateContribution.openKeybindingsId, nls.localize('keyboardShortcuts', "Keyboard Shortcuts"), null, true, () => this.commandService.executeCommand(LightUpdateContribution.openKeybindingsId)),
328328
new Separator(),
329-
new Action(LightUpdateContribution.selectIconThemeId, nls.localize('themes.selectIconTheme', "Select File Icon Theme"), null, true, () => this.commandService.executeCommand(LightUpdateContribution.selectIconThemeId)),
330329
new Action(LightUpdateContribution.selectColorThemeId, nls.localize('selectTheme.label', "Color Theme"), null, true, () => this.commandService.executeCommand(LightUpdateContribution.selectColorThemeId)),
330+
new Action(LightUpdateContribution.selectIconThemeId, nls.localize('themes.selectIconTheme.label', "File Icon Theme"), null, true, () => this.commandService.executeCommand(LightUpdateContribution.selectIconThemeId)),
331331
new Separator(),
332332
this.getUpdateAction()
333333
];

0 commit comments

Comments
 (0)