summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-07-26 15:56:50 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-07-26 15:56:50 +0000
commit31329ec363372314deb4d006c6fb0c18a611c9eb (patch)
tree77d77a1233b7ec3eca84e7944dd6a88438b4e643
parent2e64df4035f783b7a57da8e6b118a844ae76a0df (diff)
downloadgdk-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)
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-104
-rw-r--r--ChangeLog.pre-2-84
-rw-r--r--gtk/gtkimcontextsimple.c3
4 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ae6217a4e..7ffb54807 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
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)
+
* gtk/gtkwidget.h:
* gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED from
gtk_widget_new as well, pointed out by Kjartan Maraas.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index ae6217a4e..7ffb54807 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,9 @@
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)
+
* gtk/gtkwidget.h:
* gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED from
gtk_widget_new as well, pointed out by Kjartan Maraas.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index ae6217a4e..7ffb54807 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,9 @@
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)
+
* gtk/gtkwidget.h:
* gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED from
gtk_widget_new as well, pointed out by Kjartan Maraas.
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);