aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c2
-rw-r--r--sway/input/input-manager.c4
-rw-r--r--sway/input/seat.c6
3 files changed, 6 insertions, 6 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 819007d5..85b7865d 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1,6 +1,6 @@
#define _XOPEN_SOURCE 700
#include <wlr/types/wlr_cursor.h>
-#include "sway/cursor.h"
+#include "sway/input/cursor.h"
#include "log.h"
static void handle_cursor_motion(struct wl_listener *listener, void *data) {
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
index b5ab8cc1..4f52e59a 100644
--- a/sway/input/input-manager.c
+++ b/sway/input/input-manager.c
@@ -6,8 +6,8 @@
#include <string.h>
#include <libinput.h>
#include "sway/config.h"
-#include "sway/input-manager.h"
-#include "sway/seat.h"
+#include "sway/input/input-manager.h"
+#include "sway/input/seat.h"
#include "sway/server.h"
#include "list.h"
#include "log.h"
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 459b2ee2..1a2b728c 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1,8 +1,8 @@
#define _XOPEN_SOURCE 700
#include <wlr/types/wlr_cursor.h>
-#include "sway/seat.h"
-#include "sway/cursor.h"
-#include "sway/input-manager.h"
+#include "sway/input/seat.h"
+#include "sway/input/cursor.h"
+#include "sway/input/input-manager.h"
#include "log.h"
struct sway_seat *sway_seat_create(struct wl_display *display,