Fix precendence problem. (Sven Neumann)

Mon Feb 25 12:47:25 2002  Owen Taylor  <otaylor@redhat.com>

        * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
        Fix precendence problem. (Sven Neumann)
This commit is contained in:
Owen Taylor 2002-02-25 17:48:32 +00:00 committed by Owen Taylor
parent 4e49e2e49d
commit 9953d39036
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -1,3 +1,8 @@
Mon Feb 25 12:47:25 2002 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
Fix precendence problem. (Sven Neumann)
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
* tests/testselection.c (main): Convert over to using

View File

@ -839,7 +839,7 @@ gdk_keymap_translate_keyboard_state (GdkKeymap *keymap,
* However, <shift>Tab is not _consistently_ GDK_ISO_Left_Tab, so people
* can't bind to GDK_ISO_Left_Tab instead. So, we force consistency here.
*/
if (tmp_keyval == GDK_Tab && (tmp_modifiers & GDK_SHIFT_MASK == 0))
if (tmp_keyval == GDK_Tab && (tmp_modifiers & GDK_SHIFT_MASK) == 0)
{
tmp_keyval = GDK_ISO_Left_Tab;
tmp_modifiers |= GDK_SHIFT_MASK;