Bug #1358: Make ISO_Prev_Group cycle/wrap as ISO_Next_Group does.

This commit is contained in:
Daniel Stone 2006-04-03 11:37:30 +00:00
parent 2a6c11aa3b
commit 66500819b1
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-04-03 Daniel Stone <daniel@freedesktop.org>
* xkb/xkbUtils.c:
Bug #1358: Make ISO_Prev_Group cycle/wrap as ISO_Next_Group does.
2006-04-02 Adam Jackson <ajax@freedesktop.org>
* hw/dmx/glxProxy/glxcmds.c:

View File

@ -756,11 +756,11 @@ unsigned char grp;
grp= state->locked_group;
if (grp>=ctrls->num_groups)
if (grp>=ctrls->num_groups || grp < 0)
state->locked_group= XkbAdjustGroup(grp,ctrls);
grp= state->locked_group+state->base_group+state->latched_group;
if (grp>=ctrls->num_groups)
if (grp>=ctrls->num_groups || grp < 0)
state->group= XkbAdjustGroup(grp,ctrls);
else state->group= grp;
XkbComputeCompatState(xkbi);