Re: [PATCH] qemu-keymap: fix altgr modifier lookup for newer xkeyboard-config
Philippe Mathieu-Daudé <[email protected]>
| Newsgroups | org.nongnu.qemu-trivial,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
On 8/4/26 11:14, Dietmar Maurer wrote: > xkeyboard-config 2.37 removed the "AltGr" virtual modifier in favor > of mapping upper groups directly to Mod5. Since then, > xkb_keymap_mod_get_index(map, "AltGr") returns XKB_MOD_INVALID, so > AltGr-based keysyms were never generated. > > See: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/473f9bc32f9ba869829cc0d06a75cd1f2560aa60 > > Try "AltGr" first, and fall back to "Mod5" for compatibility with > both old and new xkeyboard-config versions. > > Signed-off-by: Dietmar Maurer <[email protected]> > --- > qemu-keymap.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/qemu-keymap.c b/qemu-keymap.c > index 1c081db287..d4dccf456e 100644 > --- a/qemu-keymap.c > +++ b/qemu-keymap.c > @@ -230,6 +230,9 @@ int main(int argc, char *argv[]) > shift = get_mod(map, "Shift"); > ctrl = get_mod(map, "Control"); > altgr = get_mod(map, "AltGr"); > + if (!altgr) { > + altgr = get_mod(map, "Mod5"); > + } > numlock = get_mod(map, "NumLock"); > > state = xkb_state_new(map); Reviewed-by: Philippe Mathieu-Daudé <[email protected]>