diff --git a/src/js/commandline.js b/src/js/commandline.js index 3c1b1de4a..95a268104 100644 --- a/src/js/commandline.js +++ b/src/js/commandline.js @@ -621,6 +621,10 @@ $(document).keydown((e) => { }); $(document).on("click", "#commandLineMobileButton", () => { - CommandlineLists.setCurrent([CommandlineLists.defaultCommands]); + if (Config.singleListCommandLine == "on") { + useSingleListCommandLine(false); + } else { + CommandlineLists.setCurrent([CommandlineLists.defaultCommands]); + } show(); });