Wayland: Fix pointing hand cursor shape

Related to #1432.
master
Camilla Löwy ago%!(EXTRA string=6 years)
parent a80788c17f
commit 80fde12fda
  1. 1
      README.md
  2. 2
      src/wl_window.c

@ -139,6 +139,7 @@ information on what to include when reporting a bug.
(#1462,#1528)
- [X11] Bugfix: Decorations could not be enabled after window creation (#1566)
- [X11] Bugfix: Content scale fallback value could be inconsistent (#1578)
- [Wayland] Bugfix: The `GLFW_HAND_CURSOR` shape used the wrong image (#1432)
- [NSGL] Removed enforcement of forward-compatible flag for core contexts

@ -783,7 +783,7 @@ static char *translateCursorShape(int shape)
case GLFW_CROSSHAIR_CURSOR:
return "crosshair";
case GLFW_HAND_CURSOR:
return "grabbing";
return "hand2";
case GLFW_HRESIZE_CURSOR:
return "sb_h_double_arrow";
case GLFW_VRESIZE_CURSOR:

Loading…
Cancel
Save