summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h1
-rw-r--r--include/sway/input/input-manager.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 1ab96b51..27fae0c6 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -354,6 +354,7 @@ struct sway_config {
354 // Context for command handlers 354 // Context for command handlers
355 struct { 355 struct {
356 struct input_config *input_config; 356 struct input_config *input_config;
357 struct seat_config *seat_config;
357 } handler_context; 358 } handler_context;
358}; 359};
359 360
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h
index 8388f930..58a93fe3 100644
--- a/include/sway/input/input-manager.h
+++ b/include/sway/input/input-manager.h
@@ -5,8 +5,6 @@
5#include "sway/config.h" 5#include "sway/config.h"
6#include "list.h" 6#include "list.h"
7 7
8extern struct seat_config *current_seat_config;
9
10/** 8/**
11 * The global singleton input manager 9 * The global singleton input manager
12 * TODO: make me not a global 10 * TODO: make me not a global