diff --git a/src/musikbox/Main.cpp b/src/musikbox/Main.cpp index 6822281d0..43ee33867 100644 --- a/src/musikbox/Main.cpp +++ b/src/musikbox/Main.cpp @@ -309,10 +309,10 @@ int main(int argc, char* argv[]) else if (kn == "KEY_RESIZE") { resizeAt = now() + REDRAW_DEBOUNCE_MS; } - else if (ch == KEY_F(1) || kn == "M-q") { + else if (kn == "M-`" || kn == "M-~") { changeLayout(state, consoleLayout); } - else if (ch == KEY_F(2) || kn == "M-w") { + else if (kn == "M-a") { changeLayout(state, libraryLayout); } else if (kn == "M-s") { diff --git a/src/musikbox/app/layout/ConsoleLayout.cpp b/src/musikbox/app/layout/ConsoleLayout.cpp index 5c8587bbc..19f4561dc 100755 --- a/src/musikbox/app/layout/ConsoleLayout.cpp +++ b/src/musikbox/app/layout/ConsoleLayout.cpp @@ -188,8 +188,9 @@ void ConsoleLayout::Help() { int64 s = -1; this->output->WriteLine("help:\n", s); this->output->WriteLine(" to switch between windows", s); - this->output->WriteLine(" ALT+Q console view", s); - this->output->WriteLine(" ALT+W library view", s); + this->output->WriteLine(" alt+~ console view (this screen)", s); + this->output->WriteLine(" alt+a library view", s); + this->output->WriteLine(" alt+s settings view", s); this->output->WriteLine("", s); this->output->WriteLine(" addir : add a music directory", s); this->output->WriteLine(" rmdir : remove a music directory", s); @@ -312,4 +313,4 @@ void ConsoleLayout::ListPlugins() const { this->output->WriteLine(format, BOX_COLOR_RED_ON_BLUE); } -} \ No newline at end of file +}