commit 5cf3c7b3977fa8ee54fcadc81942de6253f05a20
parent 298e4ff05461733d75958e7391ca60d2f8a79010
Author: Leon Plickat <leonhenrik.plickat@stud.uni-goettingen.de>
Date: Wed, 12 Jun 2019 01:15:10 +0200
Use *cursor in view_begin_interative()
The variable is passed to the function but was not used. I assume it is
intended to be used.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/input.c b/input.c
@@ -193,7 +193,7 @@ static void view_begin_interactive(struct wio_view *view,
view->server->interactive.sy = (int)sy;
view->server->input_state = state;
wlr_xcursor_manager_set_cursor_image(view->server->cursor_mgr,
- "grabbing", view->server->cursor);
+ cursor, view->server->cursor);
}
static void view_end_interactive(struct wio_server *server) {