diff options
author | emersion <contact@emersion.fr> | 2017-11-11 17:27:44 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-11-11 17:27:44 +0100 |
commit | ac1573b0e7b0b08413e115bb88682ebedbfbf39a (patch) | |
tree | 4cdbbf78956950066c65c6c5885a0d07bc881fe0 /rootston/cursor.c | |
parent | 2bee288090d930a09be5f9176a519c1ec02c63de (diff) |
Add scale parameter to wlr_cursor_set_image
Diffstat (limited to 'rootston/cursor.c')
-rw-r--r-- | rootston/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/cursor.c b/rootston/cursor.c index cba9e782..c3982e0e 100644 --- a/rootston/cursor.c +++ b/rootston/cursor.c @@ -30,7 +30,7 @@ void roots_cursor_destroy(struct roots_cursor *cursor) { static void cursor_set_xcursor_image(struct roots_cursor *cursor, struct wlr_xcursor_image *image) { wlr_cursor_set_image(cursor->cursor, image->buffer, image->width, - image->width, image->height, image->hotspot_x, image->hotspot_y); + image->width, image->height, image->hotspot_x, image->hotspot_y, 0); } static void roots_cursor_update_position(struct roots_cursor *cursor, uint32_t time) { |