From 887ef75d8d48c7279d4ea0897350070782f2c457 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Thu, 28 Apr 2016 00:14:18 +0200 Subject: [PATCH] added support for meta/windows/command key for window scaling shortcuts --- src/events.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/events.c b/src/events.c index 564f647d..bad68898 100644 --- a/src/events.c +++ b/src/events.c @@ -1359,7 +1359,8 @@ void HandleKey(Key key, int key_status) key == KSYM_plus || key == KSYM_0) && ((GetKeyModState() & KMOD_Control) || - (GetKeyModState() & KMOD_Alt)) && + (GetKeyModState() & KMOD_Alt) || + (GetKeyModState() & KMOD_Meta)) && video.window_scaling_available && !video.fullscreen_enabled) { -- 2.34.1