summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/sway/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 56b4e637..7de85ab7 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -5,8 +5,8 @@
5 5
6#include <libinput.h> 6#include <libinput.h>
7#include <stdint.h> 7#include <stdint.h>
8#include <wlc/geometry.h> 8#include <string.h>
9#include <wlc/wlc.h> 9#include <wlr/types/wlr_box.h>
10#include <xkbcommon/xkbcommon.h> 10#include <xkbcommon/xkbcommon.h>
11#include <time.h> 11#include <time.h>
12#include "list.h" 12#include "list.h"
@@ -68,7 +68,7 @@ struct input_config {
68 int tap; 68 int tap;
69 69
70 bool capturable; 70 bool capturable;
71 struct wlc_geometry region; 71 struct wlr_box region;
72}; 72};
73 73
74/** 74/**