2006-08-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Thu, 31 Aug 2006 08:40:55 +0000 (08:40 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Thu, 31 Aug 2006 08:40:55 +0000 (08:40 +0000)
* debian/control:
* hildon-widgets/hildon-name-password-dialog.c: Applying a patch by
Fernando to fix the autocaptialization for username/password entries.
Fixes #NB37467.

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

index 60ac70a..86821e4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-08-31  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
+       * debian/control:
+       * hildon-widgets/hildon-name-password-dialog.c: Applying a patch by
+       Fernando to fix the autocaptialization for username/password entries.
+       Fixes #NB37467.
+
 2006-08-30  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
        [Merging 0.13.1 => TRUNK]
index b130fba..457e2aa 100644 (file)
@@ -7,6 +7,7 @@ hildon-libs (0.14.0) unstable; urgency=low
   * fixes NB#38559 - Progress banner does not fit enough text
   * fixes NB#33217 - No borders for the custom defined color boxes in hildon color selector
   * fixes NB#37172 - Colour selector for background color shows logical string
+  * fixes NB#37467 - Hildon name password dialog with autocapitalization
 
   * Merging the new color selector branch (0.13.1) with the main trunk code.
   * Maintainer change: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
index 58dec85..e0a407c 100644 (file)
@@ -221,6 +221,7 @@ 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);
     caption = HILDON_CAPTION(hildon_caption_new
                                     (group,
                                      _(HILDON_NAME_PASSWORD_DIALOG_NAME ),
@@ -232,6 +233,7 @@ hildon_name_password_dialog_init(HildonNamePasswordDialog * dialog)
 
     /* Setup password entry */
     priv->passwordEntry = GTK_ENTRY(gtk_entry_new());
+    g_object_set (priv->passwordEntry, "hildon-input-mode", HILDON_GTK_INPUT_MODE_FULL);
     gtk_entry_set_visibility(GTK_ENTRY(priv->passwordEntry), FALSE);
     caption =
       HILDON_CAPTION(hildon_caption_new(group,