Skip to content
Snippets Groups Projects
Commit 051abaff authored by Rafaël Carré's avatar Rafaël Carré
Browse files

* #6560: don't hide password entry in security tab

It would only hide the password for the first entry, and was buggy:
The real password would be overwritten by the masking entry (*****)

We need to find something else
parent 6c903349
No related branches found
No related tags found
No related merge requests found
......@@ -504,12 +504,6 @@ static void cell_edited_cb (GtkCellRendererText *renderer, gchar *path_desc, gch
if (g_strcasecmp (text, gtk_entry_get_text (GTK_ENTRY (entryUsername))) != 0) {
g_signal_handlers_disconnect_by_func (G_OBJECT (entryUsername), G_CALLBACK (update_credential_cb), NULL);
}
if (column == COLUMN_CREDENTIAL_PASSWORD) {
gtk_entry_set_text (GTK_ENTRY (entryPassword), text);
text = "*****";
}
}
gtk_tree_model_get_iter (model, &iter, path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment