Fix a compatibility problem

It turns out that my attempt at handling Super, Hyper and Meta better
is causing problems, mostly because Alt and Meta are commonly colocated
in the modmap, and apps do a check for the Alt modifier regularly.

See e.g bug 607697.
This commit is contained in:
Matthias Clasen
2010-02-12 15:45:16 -05:00
parent 6f566057e8
commit 13d69e552d
8 changed files with 66 additions and 3 deletions

View File

@ -872,6 +872,12 @@ gdk_keymap_translate_keyboard_state (GdkKeymap *keymap,
return tmp_keyval != GDK_VoidSymbol;
}
void
gdk_keymap_add_virtual_modifiers (GdkKeymap *keymap,
GdkModifierType *state)
{
}
gboolean
gdk_keymap_map_virtual_modifiers (GdkKeymap *keymap,
GdkModifierType *state)