aboutsummaryrefslogtreecommitdiff
path: root/rootston/cursor.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-11-11 17:27:44 +0100
committeremersion <contact@emersion.fr>2017-11-11 17:27:44 +0100
commitac1573b0e7b0b08413e115bb88682ebedbfbf39a (patch)
tree4cdbbf78956950066c65c6c5885a0d07bc881fe0 /rootston/cursor.c
parent2bee288090d930a09be5f9176a519c1ec02c63de (diff)
Add scale parameter to wlr_cursor_set_image
Diffstat (limited to 'rootston/cursor.c')
-rw-r--r--rootston/cursor.c2
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) {