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

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Oct 8 15:20:29 EEST 2007
Author: tjunnone
Date: 2007-10-08 15:20:27 +0300 (Mon, 08 Oct 2007)
New Revision: 14351

Modified:
   projects/haf/trunk/hildon-input-method/ChangeLog
   projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c
Log:
2007-10-08  Tomas Junnonen  <tomas.junnonen at nokia.com>

        * src/hildon-im-ui.c: Fixed plugins with a trigger of finger
          type not activating if no other plugin has been previously
          loaded. Partial fix for NB#72402.


Modified: projects/haf/trunk/hildon-input-method/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-input-method/ChangeLog	2007-10-08 12:17:03 UTC (rev 14350)
+++ projects/haf/trunk/hildon-input-method/ChangeLog	2007-10-08 12:20:27 UTC (rev 14351)
@@ -1,3 +1,9 @@
+2007-10-08  Tomas Junnonen  <tomas.junnonen at nokia.com>
+
+	* src/hildon-im-ui.c: Fixed plugins with a trigger of finger
+	  type not activating if no other plugin has been previously
+	  loaded. Partial fix for NB#72402.
+
 2007-09-26  Tomas Junnonen  <tomas.junnonen at nokia.com>
 
 	* src/hildon-im-ui.c: Fixed plugins not receiving the fullscreen

Modified: projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c
===================================================================
--- projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c	2007-10-08 12:17:03 UTC (rev 14350)
+++ projects/haf/trunk/hildon-input-method/src/hildon-im-ui.c	2007-10-08 12:20:27 UTC (rev 14351)
@@ -896,8 +896,9 @@
 hildon_im_ui_show(HildonIMUI *self)
 {
   g_return_if_fail(HILDON_IM_IS_UI(self));
-  
-  if (self->priv->current_plugin == NULL)
+
+  if (self->priv->current_plugin == NULL &&
+      self->priv->trigger != HILDON_IM_TRIGGER_FINGER)
     return;
 
   if ((self->priv->enable_stylus_ui == FALSE &&


More information about the maemo-commits mailing list