diff options
Diffstat (limited to 'widgets/misc/e-account-combo-box.c')
-rw-r--r-- | widgets/misc/e-account-combo-box.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/misc/e-account-combo-box.c b/widgets/misc/e-account-combo-box.c index 064ed2bd10..6a96644bfd 100644 --- a/widgets/misc/e-account-combo-box.c +++ b/widgets/misc/e-account-combo-box.c @@ -155,8 +155,12 @@ account_combo_box_refresh_cb (EAccountList *account_list, skip: /* Restore the previously selected account. */ account = e_account_combo_box_get_active (combo_box); + if (account != NULL) + g_object_ref (account); gtk_combo_box_set_model (GTK_COMBO_BOX (combo_box), model); e_account_combo_box_set_active (combo_box, account); + if (account != NULL) + g_object_unref (account); } static GObject * |