2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Oct 2006 13:11:17 +0000 (13:11 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Oct 2006 13:11:17 +0000 (13:11 +0000)
* hildon-widgets/hildon-get-password-dialog.c: Making the password
text entry 20 characters long. Fixes NB#39586. A workaround.

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

index 31390eb..0f93db2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-10-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
+       * hildon-widgets/hildon-get-password-dialog.c: Making the password
+       text entry 20 characters long. Fixes NB#39586. A workaround.
+
+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
index ed8c64a..45bd412 100644 (file)
@@ -321,6 +321,8 @@ create_contents(HildonGetPasswordDialog *dialog)
 
     /* Create password text entry */
     control = gtk_entry_new();
+    gtk_entry_set_width_chars (GTK_ENTRY (control), 20);
+
     g_object_set (control, "hildon-input-mode", HILDON_GTK_INPUT_MODE_FULL, NULL);
     gtk_entry_set_visibility(GTK_ENTRY(control), FALSE);
     priv->passwordEntry = HILDON_CAPTION