From e8765eab710b133a32c323bffc20ac9d7630a254 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Fri, 3 Aug 2007 22:00:40 +0000 Subject: [PATCH] * src/maemo/modest-account-settings-dialog.c: * Now we show the "settings saved" or "settings" failed information banners again (we were parenting it with the dialog we were closing, so the dialog was not saved) (fixes NB#63748). pmo-trunk-r2932 --- src/maemo/modest-account-settings-dialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/maemo/modest-account-settings-dialog.c b/src/maemo/modest-account-settings-dialog.c index 5f4fba0..766c4f6 100644 --- a/src/maemo/modest-account-settings-dialog.c +++ b/src/maemo/modest-account-settings-dialog.c @@ -1040,10 +1040,10 @@ on_response (GtkDialog *wizard_dialog, const gboolean enabled = modest_account_mgr_get_enabled (self->account_manager, self->account_name); if (enabled) - show_error (GTK_WIDGET (self), _("mcen_ib_advsetup_settings_saved")); + show_error (NULL, _("mcen_ib_advsetup_settings_saved")); } else - show_error (GTK_WIDGET (self), _("mail_ib_setting_failed")); + show_error (NULL, _("mail_ib_setting_failed")); } } } -- 1.7.9.5