2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Oct 2006 08:35:45 +0000 (08:35 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Oct 2006 08:35:45 +0000 (08:35 +0000)
* hildon-widgets/hildon-name-password-dialog.c: Fixing the
auto-capitalization issues in the name password dialog. Two things
accumulated here -- missing NULL in property set and the lack of
visibility re-set after input method hint setting (this should not be
needed BTW). Fixes NB#37467.

ChangeLog
hildon-widgets/hildon-name-password-dialog.c

index b354650..31390eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2006-10-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
+       * hildon-widgets/hildon-name-password-dialog.c: Fixing the
+       auto-capitalization issues in the name password dialog. Two things
+       accumulated here -- missing NULL in property set and the lack of
+       visibility re-set after input method hint setting (this should not be
+       needed BTW). Fixes NB#37467.
+
+2006-10-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
        * hildon-widgets/hildon-color-button.c: Correctly fixing NB#39798 --
        the expose event should draw it's bits according to widget's
        allocation and not the expose area.
index 6e33dc1..327e1f0 100644 (file)
@@ -221,7 +221,8 @@ hildon_name_password_dialog_init(HildonNamePasswordDialog * dialog)
 
     /* Setup user name entry */
     priv->nameEntry = GTK_ENTRY(gtk_entry_new());
-    g_object_set (priv->nameEntry, "hildon-input-mode", HILDON_GTK_INPUT_MODE_FULL);
+    g_object_set (priv->nameEntry, "hildon-input-mode", HILDON_GTK_INPUT_MODE_FULL, NULL);
+    gtk_entry_set_visibility(GTK_ENTRY(priv->nameEntry), FALSE);
     caption = HILDON_CAPTION(hildon_caption_new
                                     (group,
                                      _(HILDON_NAME_PASSWORD_DIALOG_NAME ),