Fixed alt+~ keybinding in Windows with PDCurses

This commit is contained in:
casey 2016-06-23 22:20:29 -07:00
parent 6db92b0b64
commit dd8e5b19d1

View File

@ -309,7 +309,7 @@ int main(int argc, char* argv[])
else if (kn == "KEY_RESIZE") { else if (kn == "KEY_RESIZE") {
resizeAt = now() + REDRAW_DEBOUNCE_MS; resizeAt = now() + REDRAW_DEBOUNCE_MS;
} }
else if (kn == "M-`" || kn == "M-~") { else if (kn == "M-`" || kn == "M-~" || kn == "M-bquote") {
changeLayout(state, consoleLayout); changeLayout(state, consoleLayout);
} }
else if (kn == "M-a") { else if (kn == "M-a") {