aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-11-18 13:09:09 +0100
committerMarvin Borner2020-11-18 13:09:09 +0100
commitcc85ffd8a1c4703051655c7f5727157e7e1ce96a (patch)
tree1269cc80b34e39065098eb6525691c2dcccc027f /apps
parent5443567733f00e8217731c1241f565025e6f4c9e (diff)
Fixed unrecognized special keys
Diffstat (limited to 'apps')
-rw-r--r--apps/wm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 05d497c..544fb66 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -101,7 +101,7 @@ static void redraw_all()
static u32 special_keys_pressed;
static void handle_keyboard(struct event_keyboard *event)
{
- if (event->magic != KEYBOARD_MAGIC || !focused)
+ if (event->magic != KEYBOARD_MAGIC)
return;
if (event->scancode == KEY_LEFTSHIFT || event->scancode == KEY_RIGHTSHIFT)
@@ -111,6 +111,9 @@ static void handle_keyboard(struct event_keyboard *event)
else if (event->scancode == KEY_LEFTCTRL || event->scancode == KEY_RIGHTCTRL)
special_keys_pressed ^= CTRL_PRESSED;
+ if (!focused)
+ return;
+
struct gui_event_keyboard *msg = malloc(sizeof(*msg));
if (special_keys_pressed & SHIFT_PRESSED)