summaryrefslogtreecommitdiff
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authoremersion <[email protected]>2018-09-07 15:43:15 +0200
committeremersion <[email protected]>2018-09-07 15:43:15 +0200
commit251a7ebc4ba1dd24e9bc6b3cfd6883c80f429a2f (patch)
tree0c719df34d250397e9b2731c50f3ee6bb3acf38a /sway/input/cursor.c
parent309fcf23007a7c1b5c1c6da6b5ff7101312488cc (diff)
Fix drag-and-drop
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 00240e84..b35fa732 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -408,6 +408,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
}
struct sway_seat *seat = cursor->seat;
+ struct wlr_seat *wlr_seat = seat->wlr_seat;
if (seat->operation != OP_NONE) {
switch (seat->operation) {
@@ -431,7 +432,6 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
return;
}
- struct wlr_seat *wlr_seat = seat->wlr_seat;
struct wlr_surface *surface = NULL;
double sx, sy;