mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
Use "default" XCursor instead of "left_ptr"
"left_ptr" is the legacy XCursor name. "default" is the cursor spec name.
This commit is contained in:
parent
7fbd9fbf28
commit
974a8629a8
4 changed files with 7 additions and 7 deletions
|
@ -82,7 +82,7 @@ void update_cursor(struct swaybar_seat *seat) {
|
|||
pointer->cursor_theme = wl_cursor_theme_load(
|
||||
cursor_theme, cursor_size * scale, seat->bar->shm);
|
||||
struct wl_cursor *cursor;
|
||||
cursor = wl_cursor_theme_get_cursor(pointer->cursor_theme, "left_ptr");
|
||||
cursor = wl_cursor_theme_get_cursor(pointer->cursor_theme, "default");
|
||||
pointer->cursor_image = cursor->images[0];
|
||||
wl_surface_set_buffer_scale(pointer->cursor_surface, scale);
|
||||
wl_surface_attach(pointer->cursor_surface,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue