From dd8e5b19d1e2861b632f33fcb69e9d3b70ad21b4 Mon Sep 17 00:00:00 2001 From: casey Date: Thu, 23 Jun 2016 22:20:29 -0700 Subject: [PATCH] Fixed alt+~ keybinding in Windows with PDCurses --- src/musikbox/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musikbox/Main.cpp b/src/musikbox/Main.cpp index 43ee33867..92c498e25 100644 --- a/src/musikbox/Main.cpp +++ b/src/musikbox/Main.cpp @@ -309,7 +309,7 @@ int main(int argc, char* argv[]) else if (kn == "KEY_RESIZE") { resizeAt = now() + REDRAW_DEBOUNCE_MS; } - else if (kn == "M-`" || kn == "M-~") { + else if (kn == "M-`" || kn == "M-~" || kn == "M-bquote") { changeLayout(state, consoleLayout); } else if (kn == "M-a") {