mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
reordered theme commands
This commit is contained in:
parent
3fb097c62c
commit
1204a3510d
1 changed files with 18 additions and 18 deletions
|
@ -2482,12 +2482,30 @@ export let defaultCommands = {
|
|||
icon: "fa-ad",
|
||||
subgroup: commandsEnableAds,
|
||||
},
|
||||
{
|
||||
id: "changeTheme",
|
||||
display: "Theme...",
|
||||
icon: "fa-palette",
|
||||
subgroup: themeCommands,
|
||||
},
|
||||
{
|
||||
id: "setCustomTheme",
|
||||
display: "Custom theme...",
|
||||
icon: "fa-palette",
|
||||
subgroup: commandsCustomTheme,
|
||||
},
|
||||
{
|
||||
id: "changeRandomTheme",
|
||||
display: "Random theme...",
|
||||
icon: "fa-random",
|
||||
subgroup: commandsRandomTheme,
|
||||
},
|
||||
{
|
||||
id: "randomizeTheme",
|
||||
display: "Next random theme",
|
||||
icon: "fa-random",
|
||||
exec: () => ThemeController.randomizeTheme(),
|
||||
},
|
||||
{
|
||||
id: "changeDifficulty",
|
||||
display: "Difficulty...",
|
||||
|
@ -2552,18 +2570,6 @@ export let defaultCommands = {
|
|||
UpdateConfig.setCustomBackground(input);
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "changeTheme",
|
||||
display: "Theme...",
|
||||
icon: "fa-palette",
|
||||
subgroup: themeCommands,
|
||||
},
|
||||
{
|
||||
id: "changeRandomTheme",
|
||||
display: "Random theme...",
|
||||
icon: "fa-random",
|
||||
subgroup: commandsRandomTheme,
|
||||
},
|
||||
{
|
||||
id: "changeLanguage",
|
||||
display: "Language...",
|
||||
|
@ -2656,12 +2662,6 @@ export let defaultCommands = {
|
|||
icon: "fa-arrows-alt-h",
|
||||
subgroup: commandsPageWidth,
|
||||
},
|
||||
{
|
||||
id: "randomizeTheme",
|
||||
display: "Next random theme",
|
||||
icon: "fa-palette",
|
||||
exec: () => ThemeController.randomizeTheme(),
|
||||
},
|
||||
{
|
||||
id: "viewTypingPage",
|
||||
display: "View Typing Page",
|
||||
|
|
Loading…
Reference in a new issue