aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-19 05:28:06 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-19 05:28:06 -0500
commit39e7871a859df5ce82f9d3d10088a3bc2b4ff356 (patch)
treef2f89a9024f9f3e96fd8e17d14e5f9b04296d75e /sway/input/cursor.c
parenterror on not enough input/seat args for cmd (diff)
downloadsway-39e7871a859df5ce82f9d3d10088a3bc2b4ff356.tar.gz
sway-39e7871a859df5ce82f9d3d10088a3bc2b4ff356.tar.zst
sway-39e7871a859df5ce82f9d3d10088a3bc2b4ff356.zip
dont set cursor image on motion
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 24d4642d..3b5cfce5 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -15,9 +15,6 @@ static void cursor_update_position(struct sway_cursor *cursor) {
15 double x = cursor->cursor->x; 15 double x = cursor->cursor->x;
16 double y = cursor->cursor->y; 16 double y = cursor->cursor->y;
17 17
18 wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager,
19 "left_ptr", cursor->cursor);
20
21 cursor->x = x; 18 cursor->x = x;
22 cursor->y = y; 19 cursor->y = y;
23} 20}