From e89001d5976bc7707ca4727e1d8d95293c128f99 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Wed, 13 May 2026 23:02:27 +0200 Subject: [PATCH] cage: stop using DEFAULT_XCURSOR as a cursor theme name That's a cursor image name, not a cursor theme name. NULL means use default. --- cage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cage.c b/cage.c index b2523ca..252e9c2 100644 --- a/cage.c +++ b/cage.c @@ -577,7 +577,7 @@ main(int argc, char *argv[]) server.new_xwayland_surface.notify = handle_xwayland_surface_new; wl_signal_add(&xwayland->events.new_surface, &server.new_xwayland_surface); - xcursor_manager = wlr_xcursor_manager_create(DEFAULT_XCURSOR, XCURSOR_SIZE); + xcursor_manager = wlr_xcursor_manager_create(NULL, XCURSOR_SIZE); if (!xcursor_manager) { wlr_log(WLR_ERROR, "Cannot create XWayland XCursor manager"); ret = 1;