Fixed cursors

This commit is contained in:
buffet 2019-03-11 13:29:23 +01:00
parent be5c1a26af
commit ca8fa35bbc
2 changed files with 8 additions and 4 deletions

View file

@ -34,6 +34,10 @@ new_output_notify(struct wl_listener *listener, void *data)
return;
}
struct kiwmi_cursor *cursor = server->cursor;
wlr_xcursor_manager_load(cursor->xcursor_manager, wlr_output->scale);
wl_list_insert(&server->outputs, &output->link);
wlr_output_layout_add_auto(server->output_layout, wlr_output);

View file

@ -22,6 +22,8 @@ cursor_motion_notify(struct wl_listener *listener, void *data)
wl_container_of(listener, cursor, cursor_motion);
struct wlr_event_pointer_motion *event = data;
wlr_xcursor_manager_set_cursor_image(
cursor->xcursor_manager, "left_ptr", cursor->cursor);
wlr_cursor_move(
cursor->cursor, event->device, event->delta_x, event->delta_y);
}
@ -33,6 +35,8 @@ cursor_motion_absolute_notify(struct wl_listener *listener, void *data)
wl_container_of(listener, cursor, cursor_motion_absolute);
struct wlr_event_pointer_motion_absolute *event = data;
wlr_xcursor_manager_set_cursor_image(
cursor->xcursor_manager, "left_ptr", cursor->cursor);
wlr_cursor_warp_absolute(cursor->cursor, event->device, event->x, event->y);
}
@ -57,10 +61,6 @@ cursor_create(struct wlr_output_layout *output_layout)
wlr_cursor_attach_output_layout(cursor->cursor, output_layout);
cursor->xcursor_manager = wlr_xcursor_manager_create(NULL, 24);
wlr_xcursor_manager_load(cursor->xcursor_manager, 1);
wlr_xcursor_manager_set_cursor_image(
cursor->xcursor_manager, "left_ptr", cursor->cursor);
cursor->cursor_motion.notify = cursor_motion_notify;
wl_signal_add(&cursor->cursor->events.motion, &cursor->cursor_motion);