summaryrefslogtreecommitdiff
path: root/modules/input
diff options
context:
space:
mode:
authorTheppitak Karoonboonyanan <thep@linux.thai.net>2009-02-19 02:05:07 +0000
committerTheppitak Karoonboonyanan <tkaroonb@src.gnome.org>2009-02-19 02:05:07 +0000
commit20b78ae6e6adbff29de45a09f7d768734128c0bc (patch)
tree9970b118d87b4d35e0e38cc9cd44f9c081f995df /modules/input
parentf517b9d5fc7eea966448a39dd2f034b59f9bad29 (diff)
downloadgtk+-20b78ae6e6adbff29de45a09f7d768734128c0bc.tar.gz
Revert the unapproved patch for bug 457086.
2009-02-19 Theppitak Karoonboonyanan <thep@linux.thai.net> * modules/input/gtkimcontextthai.c (is_context_lost_key): Revert the unapproved patch for bug 457086. svn path=/trunk/; revision=22371
Diffstat (limited to 'modules/input')
-rw-r--r--modules/input/gtkimcontextthai.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/input/gtkimcontextthai.c b/modules/input/gtkimcontextthai.c
index 640c013c5f..0b2d6b6b58 100644
--- a/modules/input/gtkimcontextthai.c
+++ b/modules/input/gtkimcontextthai.c
@@ -122,7 +122,7 @@ is_context_lost_key(guint keyval)
keyval == GDK_Escape ||
keyval == GDK_Delete ||
(GDK_Home <= keyval && keyval <= GDK_Begin) || /* IsCursorkey */
- (GDK_KP_Space <= keyval && keyval <= GDK_KP_Delete) || /* IsKeypadKey, non-chars only */
+ (GDK_KP_Space <= keyval && keyval <= GDK_KP_Equal) || /* IsKeypadKey */
(GDK_Select <= keyval && keyval <= GDK_Break) || /* IsMiscFunctionKey */
(GDK_F1 <= keyval && keyval <= GDK_F35)); /* IsFunctionKey */
}