mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
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:
parent
4e49e2e49d
commit
9953d39036
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user