diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-07-26 15:56:50 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-07-26 15:56:50 +0000 |
commit | 31329ec363372314deb4d006c6fb0c18a611c9eb (patch) | |
tree | 77d77a1233b7ec3eca84e7944dd6a88438b4e643 /gtk/gtkimcontextsimple.c | |
parent | 2e64df4035f783b7a57da8e6b118a844ae76a0df (diff) | |
download | gdk-pixbuf-31329ec363372314deb4d006c6fb0c18a611c9eb.tar.gz |
Add ISO_Level3_Shift to the list of keysyms to ignore for composition,
2005-07-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
the list of keysyms to ignore for composition, since
AltGr keys produce it in some keyboard layouts. (#307283)
Diffstat (limited to 'gtk/gtkimcontextsimple.c')
-rw-r--r-- | gtk/gtkimcontextsimple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index 55fc76b91..2743a2705 100644 --- a/gtk/gtkimcontextsimple.c +++ b/gtk/gtkimcontextsimple.c @@ -922,7 +922,8 @@ static const guint16 gtk_compose_ignore[] = { GDK_Super_R, GDK_Hyper_L, GDK_Hyper_R, - GDK_Mode_switch + GDK_Mode_switch, + ISO_Level3_Shift }; static void gtk_im_context_simple_class_init (GtkIMContextSimpleClass *class); |