[maemo-commits] [maemo-commits] r13907 - in projects/haf/trunk/hildon-input-method: . src

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Wed Sep 19 11:05:16 EEST 2007
Author: tjunnone
Date: 2007-09-19 11:05:14 +0300 (Wed, 19 Sep 2007)
New Revision: 13907

Modified:
   projects/haf/trunk/hildon-input-method/ChangeLog
   projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c
Log:
* src/hildon-im-ui.c: Show self on start of multi key sequence.
  Fixes NB#69199.


Modified: projects/haf/trunk/hildon-input-method/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-input-method/ChangeLog	2007-09-19 08:02:52 UTC (rev 13906)
+++ projects/haf/trunk/hildon-input-method/ChangeLog	2007-09-19 08:05:14 UTC (rev 13907)
@@ -1,3 +1,8 @@
+2007-09-19  Tomas Junnonen  <tomas.junnonen at nokia.com>
+
+	* src/hildon-im-ui.c: Show self on start of multi key sequence.
+	  Fixes NB#69199.
+
 2007-09-11  Mohammad Anwari  <mdamt at maemo.org>
 
 	* Version 1.99.26

Modified: projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c
===================================================================
--- projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c	2007-09-19 08:02:52 UTC (rev 13906)
+++ projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c	2007-09-19 08:05:14 UTC (rev 13907)
@@ -1721,7 +1721,7 @@
   {
     guint c = gdk_keyval_to_unicode(msg->keyval);
 
-    if (g_unichar_isprint(c))
+    if (g_unichar_isprint(c) || msg->keyval == GDK_Multi_key)
     {
       hildon_im_ui_show(self);
     }


More information about the maemo-commits mailing list