From 6d1104ea760bf79ca4767d4b4beafa62cd9bd466 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 10 Nov 2017 11:48:55 +0100 Subject: [PATCH] [ECollectionAccountWizard] Preset to remember password by default --- src/e-util/e-collection-account-wizard.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/e-util/e-collection-account-wizard.c b/src/e-util/e-collection-account-wizard.c index 8d321d3c42..d17023da1d 100644 --- a/src/e-util/e-collection-account-wizard.c +++ b/src/e-util/e-collection-account-wizard.c @@ -1466,6 +1466,7 @@ collection_account_wizard_constructed (GObject *object) continue; wd = g_new0 (WorkerData, 1); + wd->remember_password = TRUE; widget = gtk_check_button_new_with_label (e_config_lookup_worker_get_display_name (worker)); g_object_set (G_OBJECT (widget), @@ -2102,6 +2103,7 @@ e_collection_account_wizard_reset (ECollectionAccountWizard *wizard) gtk_widget_hide (wd->running_box); e_named_parameters_free (wd->restart_params); wd->restart_params = NULL; + wd->remember_password = TRUE; } gtk_entry_set_text (GTK_ENTRY (wizard->priv->email_entry), ""); -- 2.11.4.GIT