mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-05 01:40:41 -05:00
wayland: skip loading cursor theme when using server side cursors
We don't need the client side cursor theme when using server side cursors.
This commit is contained in:
parent
27330a5dd6
commit
578765ad83
2 changed files with 6 additions and 1 deletions
2
render.c
2
render.c
|
|
@ -4604,7 +4604,7 @@ bool
|
|||
render_xcursor_set(struct seat *seat, struct terminal *term,
|
||||
enum cursor_shape shape)
|
||||
{
|
||||
if (seat->pointer.theme == NULL)
|
||||
if (seat->pointer.theme == NULL && seat->pointer.shape_device == NULL)
|
||||
return false;
|
||||
|
||||
if (seat->mouse_focus == NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue