diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-02-09 16:19:56 -0500 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-02-21 20:25:47 +0300 |
commit | f8990523b456ad4eba2bd9c22dff87772d7b0953 (patch) | |
tree | 47120cea76275472876007d1933c2520ba8d3753 | |
parent | f707f583e17cb5e8323ceb4bfd951ad0465b7d10 (diff) |
sway/commands: add missing wlr_keyboard interface include in xkb_switch_layout
-rw-r--r-- | sway/commands/input/xkb_switch_layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/input/xkb_switch_layout.c b/sway/commands/input/xkb_switch_layout.c index d6548a68..3be37daf 100644 --- a/sway/commands/input/xkb_switch_layout.c +++ b/sway/commands/input/xkb_switch_layout.c @@ -1,5 +1,6 @@ #define _POSIX_C_SOURCE 200809L #include <assert.h> +#include <wlr/interfaces/wlr_keyboard.h> #include "sway/config.h" #include "sway/commands.h" #include "sway/input/input-manager.h" |