From 82d52115211d6a687f484e9e8fcdda45b9e5b0ea Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 7 Aug 2021 15:50:25 +0100 Subject: [PATCH] clicking on the theme button will now show the theme list even if single list mode is enabled --- src/js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/ui.js b/src/js/ui.js index abada7a37..030c1f63b 100644 --- a/src/js/ui.js +++ b/src/js/ui.js @@ -258,7 +258,7 @@ $(document).on("click", "#bottom .leftright .right .current-theme", (e) => { // if (Config.customTheme) { // toggleCustomTheme(); // } - CommandlineLists.setCurrent([CommandlineLists.themeCommands]); + CommandlineLists.pushCurrent(CommandlineLists.themeCommands); Commandline.show(); } });