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