mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 17:40:40 -05:00
keybindings: Mask out the reserved modifiers mask
When switching layouts, special modifiers bits may be be set for internal use by Xkb. As we now ignore a set of modifiers when processing the special modifiers keys, we ought to also mask out those reserved modifiers otherwise we would discard the [Super] key after switching layouts in X11. Closes: https://gitlab.gnome.org/GNOME/mutter/issues/1144 https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1219
This commit is contained in:
parent
4300f1f91d
commit
61356caa06
@ -2129,7 +2129,7 @@ process_special_modifier_key (MetaDisplay *display,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else if (event->type == CLUTTER_KEY_PRESS &&
|
else if (event->type == CLUTTER_KEY_PRESS &&
|
||||||
(event->modifier_state & ~(IGNORED_MODIFIERS)) == 0 &&
|
((event->modifier_state & ~(IGNORED_MODIFIERS)) & CLUTTER_MODIFIER_MASK) == 0 &&
|
||||||
resolved_key_combo_has_keycode (resolved_key_combo,
|
resolved_key_combo_has_keycode (resolved_key_combo,
|
||||||
event->hardware_keycode))
|
event->hardware_keycode))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user