summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/input_state.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/input_state.c b/sway/input_state.c
index 61c1e4ba..e2f3c754 100644
--- a/sway/input_state.c
+++ b/sway/input_state.c
@@ -48,7 +48,7 @@ void release_key(keycode key) {
48 } 48 }
49} 49}
50 50
51struct pointer_state pointer_state = {0, 0, {0, 0}, {0, 0, {0, 0}}, {0, 0, 0, 0, 0, 0, 0, 0}}; 51struct pointer_state pointer_state;
52 52
53static struct wlc_geometry saved_floating; 53static struct wlc_geometry saved_floating;
54 54
@@ -69,6 +69,6 @@ void reset_floating(swayc_t *view) {
69 view->height = saved_floating.size.h; 69 view->height = saved_floating.size.h;
70 arrange_windows(view->parent, -1, -1); 70 arrange_windows(view->parent, -1, -1);
71 } 71 }
72 pointer_state.floating = (struct pointer_floating){0,0}; 72 pointer_state.floating = (struct pointer_floating){0, 0};
73 pointer_state.lock = (struct pointer_lock){0,0,0,0}; 73 pointer_state.lock = (struct pointer_lock){0, 0, 0, 0, 0, 0, 0, 0};
74} 74}