aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-09-29 14:32:05 +0200
committerLibravatar GitHub <noreply@github.com>2018-09-29 14:32:05 +0200
commita53171669a709886b0cd887bdefbe9a6ca84b39c (patch)
tree3699e9e71aa85b07068b425d1b28ba8b7672f8fb /sway/input/cursor.c
parentMerge pull request #2729 from RyanDwyer/resize-return-false (diff)
parentcursor: allow cursor_set_image to accept a NULL image to hide cursor (diff)
downloadsway-a53171669a709886b0cd887bdefbe9a6ca84b39c.tar.gz
sway-a53171669a709886b0cd887bdefbe9a6ca84b39c.tar.zst
sway-a53171669a709886b0cd887bdefbe9a6ca84b39c.zip
Merge pull request #2698 from ianyfan/hide-cursor
Only show cursor if pointer configured
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index aa0e07f5..2d5d351f 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1006,8 +1006,7 @@ static void handle_touch_down(struct wl_listener *listener, void *data) {
1006 if (seat_is_input_allowed(seat, surface)) { 1006 if (seat_is_input_allowed(seat, surface)) {
1007 wlr_seat_touch_notify_down(wlr_seat, surface, event->time_msec, 1007 wlr_seat_touch_notify_down(wlr_seat, surface, event->time_msec,
1008 event->touch_id, sx, sy); 1008 event->touch_id, sx, sy);
1009 cursor->image_client = NULL; 1009 cursor_set_image(cursor, NULL, NULL);
1010 wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0);
1011 } 1010 }
1012} 1011}
1013 1012
@@ -1175,11 +1174,13 @@ static void handle_request_set_cursor(struct wl_listener *listener,
1175 1174
1176void cursor_set_image(struct sway_cursor *cursor, const char *image, 1175void cursor_set_image(struct sway_cursor *cursor, const char *image,
1177 struct wl_client *client) { 1176 struct wl_client *client) {
1178 if (!cursor->image || strcmp(cursor->image, image) != 0) { 1177 if (!image) {
1178 wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0);
1179 } else if (!cursor->image || strcmp(cursor->image, image) != 0) {
1179 wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, image, 1180 wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, image,
1180 cursor->cursor); 1181 cursor->cursor);
1181 cursor->image = image;
1182 } 1182 }
1183 cursor->image = image;
1183 cursor->image_client = client; 1184 cursor->image_client = client;
1184} 1185}
1185 1186