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:
@ -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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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>
|
Sun Feb 24 23:23:28 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testselection.c (main): Convert over to using
|
* 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
|
* 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.
|
* 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_keyval = GDK_ISO_Left_Tab;
|
||||||
tmp_modifiers |= GDK_SHIFT_MASK;
|
tmp_modifiers |= GDK_SHIFT_MASK;
|
||||||
|
Reference in New Issue
Block a user