Updated a few keyboard shortcuts.

This commit is contained in:
Casey Langen 2016-06-23 22:18:01 -07:00
parent 93b9408870
commit 6db92b0b64
2 changed files with 6 additions and 5 deletions

View File

@ -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") {

View File

@ -188,8 +188,9 @@ void ConsoleLayout::Help() {
int64 s = -1;
this->output->WriteLine("help:\n", s);
this->output->WriteLine(" <tab> 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 <dir>: add a music directory", s);
this->output->WriteLine(" rmdir <dir>: remove a music directory", s);