chore(adpat-icons): removed adapt icons command
This commit is contained in:
parent
5795b30ee6
commit
9c3034af03
1 changed files with 1 additions and 6 deletions
|
@ -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;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue