From 68c197a009699d3135a38e387526ffb3534d00f7 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 8 Sep 2016 09:04:43 +0200 Subject: [PATCH] [themes] search for tag:icon-themes (for #11669) --- .../parts/themes/electron-browser/themes.contribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts index c99626fad59..f4bdc21f7fa 100644 --- a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts +++ b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts @@ -42,7 +42,7 @@ class SelectColorThemeAction extends Action { const currentThemeId = this.themeService.getColorTheme(); const currentTheme = themes.filter(theme => theme.id === currentThemeId)[0]; - const pickInMarketPlace = findInMarketplacePick(this.viewletService, 'category:themes'); +const pickInMarketPlace = findInMarketplacePick(this.viewletService, 'category:themes'); const picks: IPickOpenEntry[] = themes .map(theme => ({ id: theme.id, label: theme.label, description: theme.description })) @@ -96,7 +96,7 @@ class SelectIconThemeAction extends Action { const currentThemeId = this.themeService.getFileIconTheme(); const currentTheme = themes.filter(theme => theme.id === currentThemeId)[0]; - const pickInMarketPlace = findInMarketplacePick(this.viewletService, 'category:themes'); + const pickInMarketPlace = findInMarketplacePick(this.viewletService, 'tag:icon-theme'); const picks: IPickOpenEntry[] = themes .map(theme => ({ id: theme.id, label: theme.label, description: theme.description })) -- GitLab