From 45700cd24cff5bd82131da5f7a4c6ba0c8a7a5b0 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Fri, 22 Jun 2007 12:15:57 +0000 Subject: [PATCH] * src/modest-ui-actions.c: * Now saving to drafts shows a proper information banner (fixes NB#59333). pmo-trunk-r2377 --- src/modest-ui-actions.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index afa3896..fb93013 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -1472,6 +1472,7 @@ modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edi MsgData *data; gchar *account_name, *from; ModestAccountMgr *account_mgr; + gchar *info_text = NULL; g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window)); @@ -1528,6 +1529,10 @@ modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edi modest_msg_edit_window_free_msg_data (edit_window, data); + info_text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts")); + modest_platform_information_banner (NULL, NULL, info_text); + g_free (info_text); + /* Save settings and close the window */ gtk_widget_destroy (GTK_WIDGET (edit_window)); } -- 1.7.9.5