From 7c540aa9fe610b987fbbaf71703172710829c27a Mon Sep 17 00:00:00 2001 From: Sorcus Date: Sun, 28 Oct 2018 10:58:13 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20"variable=20=E2=80=98cursor=5Fdefault?= =?UTF-8?q?=E2=80=99=20set=20but=20not=20used"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rootston/desktop.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rootston/desktop.c b/rootston/desktop.c index 06b785ad..69c71867 100644 --- a/rootston/desktop.c +++ b/rootston/desktop.c @@ -882,14 +882,18 @@ struct roots_desktop *desktop_create(struct roots_server *server, desktop->tablet_v2 = wlr_tablet_v2_create(server->wl_display); const char *cursor_theme = NULL; +#ifdef WLR_HAS_XWAYLAND const char *cursor_default = ROOTS_XCURSOR_DEFAULT; +#endif struct roots_cursor_config *cc = roots_config_get_cursor(config, ROOTS_CONFIG_DEFAULT_SEAT_NAME); if (cc != NULL) { cursor_theme = cc->theme; +#ifdef WLR_HAS_XWAYLAND if (cc->default_image != NULL) { cursor_default = cc->default_image; } +#endif } char cursor_size_fmt[16];