From 7fabaa51625f6802589eee32a446866481239b4d Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 30 Jun 2026 20:47:50 +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. Adapted from commit 6d6ecd44d7719632592e6991ae06b5e3a9c75171. --- cage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cage.c b/cage.c index d524dfd..f4b661d 100644 --- a/cage.c +++ b/cage.c @@ -569,7 +569,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;