From 94cf37c8de3bc14cdadfe84dc8c405a477adbe3e Mon Sep 17 00:00:00 2001 From: Ilya Zakharevich Date: Mon, 17 Aug 2015 20:08:45 +0300 Subject: [PATCH] Fix a bug with LWindow key remapping on MS-Windows * src/w32fns.c (deliver_wm_chars): Fix a typo. (Bug#21276) --- src/w32fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32fns.c b/src/w32fns.c index 4532fb9f469..4b29e64bd58 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -3131,7 +3131,7 @@ deliver_wm_chars (int do_translate, HWND hwnd, UINT msg, UINT wParam, } else if (wmsg.dwModifiers & (alt_modifier | meta_modifier) || (console_modifiers - & (RIGHT_WIN_PRESSED | RIGHT_WIN_PRESSED + & (LEFT_WIN_PRESSED | RIGHT_WIN_PRESSED | APPS_PRESSED | SCROLLLOCK_ON))) { /* Pure Alt (or combination of Alt, Win, APPS, scrolllock. */ -- 2.11.4.GIT