From ba80e23dab2ac320dad3d7165f27d4aec9078939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Sun, 8 Jan 2023 16:53:21 +0100 Subject: [PATCH] Wayland: Pick more plausible default cursor size This is not intended as a replacement for actually querying the desktop for the correct size, but it appears to be a better fallback value. (cherry picked from commit 82e77dbff4a6695fb8ed3f3e9ed58c4814dd62b4) --- src/wl_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wl_init.c b/src/wl_init.c index f8f4f752..359bfe0a 100644 --- a/src/wl_init.c +++ b/src/wl_init.c @@ -302,7 +302,7 @@ static void createKeyTables(void) static GLFWbool loadCursorTheme(void) { - int cursorSize = 32; + int cursorSize = 16; const char* sizeString = getenv("XCURSOR_SIZE"); if (sizeString)