chore(adpat-icons): removed adapt icons command

This commit is contained in:
LasaleFamine 2018-04-21 18:22:34 +02:00
parent 5795b30ee6
commit 9c3034af03

View file

@ -8,13 +8,11 @@ import { reloadWindow, getCurrentThemeID, setIconsID } from "./helpers/vscode";
enum Commands { enum Commands {
ACCENTS, ACCENTS,
CHANGELOG, CHANGELOG
THEME_ICONS
} }
const OPTIONS: IGenericObject<number> = { const OPTIONS: IGenericObject<number> = {
'🖍 Change accent color': Commands.ACCENTS, '🖍 Change accent color': Commands.ACCENTS,
'🎨 Adapt icons': Commands.THEME_ICONS,
'🚧 Show changelog': Commands.CHANGELOG '🚧 Show changelog': Commands.CHANGELOG
} }
@ -52,9 +50,6 @@ export function activate(context: vscode.ExtensionContext) {
case Commands.CHANGELOG: case Commands.CHANGELOG:
showChangelog(); showChangelog();
break; break;
case Commands.THEME_ICONS:
THEME_ICONS().then(() => reloadWindow()).catch(error => console.trace(error));
break;
} }
}); });
}); });