From 4947fb6b575433c35f9ec0a9e779f68005c736ca Mon Sep 17 00:00:00 2001 From: TheDaemoness Date: Mon, 1 Jun 2020 17:41:16 +0000 Subject: [PATCH] Fix a missing cursorWayland-scale assignment. --- glfw/wl_window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/glfw/wl_window.c b/glfw/wl_window.c index 21fac3296..741d74e5c 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -699,6 +699,7 @@ setCursorImage(_GLFWwindow* window, _GLFWcursorWayland* cursorWayland) struct wl_cursor *newCursor = _glfwLoadCursor(cursorWayland->shape, window->wl.cursorTheme); if(newCursor != NULL) { cursorWayland->cursor = newCursor; + cursorWayland->scale = scale; } else { _glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: late cursor load failed; proceeding with existing cursor"); }