aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/keyboard.c')
-rw-r--r--sway/input/keyboard.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c
index b97f0152..9ac21664 100644
--- a/sway/input/keyboard.c
+++ b/sway/input/keyboard.c
@@ -13,6 +13,7 @@
13#include "sway/input/seat.h" 13#include "sway/input/seat.h"
14#include "sway/input/cursor.h" 14#include "sway/input/cursor.h"
15#include "sway/ipc-server.h" 15#include "sway/ipc-server.h"
16#include "sway/server.h"
16#include "log.h" 17#include "log.h"
17 18
18#if WLR_HAS_SESSION 19#if WLR_HAS_SESSION
@@ -32,6 +33,7 @@ static struct modifier_key {
32 { XKB_MOD_NAME_NUM, WLR_MODIFIER_MOD2 }, 33 { XKB_MOD_NAME_NUM, WLR_MODIFIER_MOD2 },
33 { "Mod3", WLR_MODIFIER_MOD3 }, 34 { "Mod3", WLR_MODIFIER_MOD3 },
34 { XKB_MOD_NAME_LOGO, WLR_MODIFIER_LOGO }, 35 { XKB_MOD_NAME_LOGO, WLR_MODIFIER_LOGO },
36 { "Super", WLR_MODIFIER_LOGO },
35 { "Mod5", WLR_MODIFIER_MOD5 }, 37 { "Mod5", WLR_MODIFIER_MOD5 },
36}; 38};
37 39