From deea79f4e4b6033003353878283fb32a620aad5c Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Wed, 29 Feb 2012 16:15:10 +0000 Subject: [PATCH] x11: Correct GroupSwitch mask base | latched | locked is incorrect for the group mask, and the clamping has already been applied. https://bugzilla.gnome.org/show_bug.cgi?id=671070 --- gdk/x11/gdkdevice-xi2.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gdk/x11/gdkdevice-xi2.c b/gdk/x11/gdkdevice-xi2.c index 4426a0e639..80aa0b0d74 100644 --- a/gdk/x11/gdkdevice-xi2.c +++ b/gdk/x11/gdkdevice-xi2.c @@ -783,16 +783,7 @@ _gdk_x11_device_xi2_translate_state (XIModifierState *mods_state, } if (group_state) - { - gint group; - - group = group_state->base | group_state->latched | group_state->locked; - - /* FIXME: do we need the XKB complications for this ? */ - group = CLAMP(group, 0, 3); - - state |= group << 13; - } + state |= (group_state->effective) << 13; return state; }