diff --git a/README.md b/README.md index 2ddb647f..cb19510a 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,7 @@ information on what to include when reporting a bug. - [Wayland] Bugfix: Client-Side Decorations were destroyed in the wrong worder (#1798) - [Wayland] Bugfix: Monitors physical size could report zero (#1784,#1792) + - [Wayland] Bugfix: Some keys were not repeating in Wayland (#1908) - [POSIX] Removed use of deprecated function `gettimeofday` - [POSIX] Bugfix: `CLOCK_MONOTONIC` was not correctly tested for or enabled - [NSGL] Removed enforcement of forward-compatible flag for core contexts @@ -357,6 +358,7 @@ skills. - Arseny Kapoulkine - Cem Karan - Osman Keskin + - Koray Kilinc - Josh Kilmer - Byunghoon Kim - Cameron King diff --git a/src/wl_init.c b/src/wl_init.c index f80b4950..ac938795 100644 --- a/src/wl_init.c +++ b/src/wl_init.c @@ -565,7 +565,7 @@ static GLFWbool inputChar(_GLFWwindow* window, uint32_t key) } } - return xkb_keymap_key_repeats(_glfw.wl.xkb.keymap, syms[0]); + return xkb_keymap_key_repeats(_glfw.wl.xkb.keymap, code); } static void keyboardHandleKey(void* data,