summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-21 09:26:22 -0500
committerLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-21 09:26:22 -0500
commit97bd548456f83420134c3316f56add2a8b6b2563 (patch)
tree32d3df833c23773eca8268e989be7d193d4881c1
parentCleanup and minor fixes (diff)
downloadsway-97bd548456f83420134c3316f56add2a8b6b2563.tar.gz
sway-97bd548456f83420134c3316f56add2a8b6b2563.tar.zst
sway-97bd548456f83420134c3316f56add2a8b6b2563.zip
More minor fixes
-rw-r--r--include/input_state.h2
-rw-r--r--sway/input_state.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/input_state.h b/include/input_state.h
index 528d5e12..27a82809 100644
--- a/include/input_state.h
+++ b/include/input_state.h
@@ -37,7 +37,7 @@ extern struct pointer_state {
37 struct pointer_tiling { 37 struct pointer_tiling {
38 bool resize; 38 bool resize;
39 swayc_t *init_view; 39 swayc_t *init_view;
40 wlc_origin *lock_pos; 40 struct wlc_origin *lock_pos;
41 } tiling; 41 } tiling;
42 struct pointer_lock { 42 struct pointer_lock {
43 bool left; 43 bool left;
diff --git a/sway/input_state.c b/sway/input_state.c
index 28a8b2f0..5119930a 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}}; 51struct pointer_state pointer_state = {0, 0, {0, 0}, {0, 0, 0}, {0, 0, 0, 0}};
52 52
53static struct wlc_geometry saved_floating; 53static struct wlc_geometry saved_floating;
54 54