summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Keller <skeller@gnome.org>2021-08-04 18:10:10 +0200
committerMarge Bot <marge-bot@gnome.org>2021-10-06 13:38:18 +0000
commit795418a5db580caf261454dee28c4b6eecd98e9b (patch)
treebd7afc4f67da4b6941095ad35594cb9297c717c9
parentbb24e4ac9e0d82c94ab6d82cc9048b988487a0ee (diff)
downloadmutter-795418a5db580caf261454dee28c4b6eecd98e9b.tar.gz
keymap/x11: Consider the out of range group action
Some keys, such as enter or backspace are only bound to a single group, even if multiple groups are configured. Because the code was previously only looking for keysyms in the same group as the current one, no matching keycodes for these would be found if the current group is not the first group. This was causing those keys to not work on the X11 OSK. To fix this use the correct action to convert an out of range group for that key according to its group_info field. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1955>
-rw-r--r--src/backends/x11/meta-keymap-x11.c39
1 files changed, 38 insertions, 1 deletions
diff --git a/src/backends/x11/meta-keymap-x11.c b/src/backends/x11/meta-keymap-x11.c
index bc6cc9044..bd7aab303 100644
--- a/src/backends/x11/meta-keymap-x11.c
+++ b/src/backends/x11/meta-keymap-x11.c
@@ -705,6 +705,42 @@ meta_keymap_x11_get_is_modifier (MetaKeymapX11 *keymap,
}
static gboolean
+matches_group (XkbDescRec *xkb,
+ uint32_t keycode,
+ uint32_t group,
+ uint32_t target_group)
+{
+ unsigned char group_info = XkbKeyGroupInfo (xkb, keycode);
+ unsigned char action = XkbOutOfRangeGroupAction (group_info);
+ unsigned char num_groups = XkbNumGroups (group_info);
+
+ if (num_groups == 0)
+ return FALSE;
+
+ if (target_group >= num_groups)
+ {
+ switch (action)
+ {
+ case XkbRedirectIntoRange:
+ target_group = XkbOutOfRangeGroupNumber (group_info);
+ if (target_group >= num_groups)
+ target_group = 0;
+ break;
+
+ case XkbClampIntoRange:
+ target_group = num_groups - 1;
+ break;
+
+ default:
+ target_group %= num_groups;
+ break;
+ }
+ }
+
+ return group == target_group;
+}
+
+static gboolean
meta_keymap_x11_get_entry_for_keyval (MetaKeymapX11 *keymap_x11,
uint32_t keyval,
uint32_t target_group,
@@ -734,7 +770,8 @@ meta_keymap_x11_get_entry_for_keyval (MetaKeymapX11 *keymap_x11,
{
g_assert (i == (group * max_shift_levels + level));
- if (entry[i] == keyval && group == target_group)
+ if (entry[i] == keyval &&
+ matches_group (xkb, keycode, group, target_group))
{
key->keycode = keycode;
key->group = group;