diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-19 05:28:06 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-19 05:28:06 -0500 |
commit | 39e7871a859df5ce82f9d3d10088a3bc2b4ff356 (patch) | |
tree | f2f89a9024f9f3e96fd8e17d14e5f9b04296d75e /sway | |
parent | 5c036a3eac89e3dec71484fe9c22704b120254b1 (diff) |
dont set cursor image on motion
Diffstat (limited to 'sway')
-rw-r--r-- | sway/input/cursor.c | 3 |
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) { double x = cursor->cursor->x; double y = cursor->cursor->y; - wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, - "left_ptr", cursor->cursor); - cursor->x = x; cursor->y = y; } |