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 {
|
||||
ACCENTS,
|
||||
CHANGELOG,
|
||||
THEME_ICONS
|
||||
CHANGELOG
|
||||
}
|
||||
|
||||
const OPTIONS: IGenericObject<number> = {
|
||||
'🖍 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;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue