Hide user password in Upload to divelogs.de dialog

Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Sergey Starosek 2013-05-16 14:31:41 +03:00 committed by Dirk Hohndel
parent b202b5a2ac
commit 69da208080

View file

@ -344,6 +344,7 @@ static gboolean divelogde_dialog(const char **user, const char **pass)
gtk_container_add(GTK_CONTAINER(frame_pass), pwd);
gtk_entry_set_max_length(GTK_ENTRY(pwd), 40);
gtk_entry_set_text(GTK_ENTRY(pwd), *pass ?: "");
gtk_entry_set_visibility(GTK_ENTRY(pwd), FALSE);
gtk_entry_set_activates_default(GTK_ENTRY(pwd), TRUE);
gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);