This email list is read-only. Emails sent to this list will be discarded ---------------------------------- applet/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit faa1dee0cea9bdf47d91f5665880dab335dd94b4 Author: Marcel Holtmann <[email protected]> Date: Fri Jan 30 15:34:05 2009 +0100 Don't limit input field length for passphrases Diff in this email is a maximum of 400 lines. diff --git a/applet/main.c b/applet/main.c index cf12a34..434e7c8 100644 --- a/applet/main.c +++ b/applet/main.c @@ -151,8 +151,8 @@ static void passphrase_dialog(const char *path, const char *name) GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0); entry = gtk_entry_new(); - gtk_entry_set_max_length(GTK_ENTRY(entry), 16); - gtk_entry_set_width_chars(GTK_ENTRY(entry), 16); + gtk_entry_set_max_length(GTK_ENTRY(entry), 120); + gtk_entry_set_width_chars(GTK_ENTRY(entry), 20); gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE); gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE); gtk_container_add(GTK_CONTAINER(vbox), entry); _______________________________________________ Commits mailing list [email protected] https://lists.moblin.org/mailman/listinfo/commits
