From a77486dd997503a738c613e5bd3239048209d8f6 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Thu, 28 Feb 2008 16:28:22 +0000 Subject: [PATCH] * src/modest-ui-actions.c (open_msgs_from_headers): Use a banner instead of a dialog to show mcen_ib_select_one_message Fixes NB#81538 pmo-trunk-r4250 --- src/modest-ui-actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 4cbb1ff..885370e 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -1175,8 +1175,8 @@ open_msgs_from_headers (TnyList *headers, ModestWindow *win) /* Check that only one message is selected for opening */ if (tny_list_get_length (headers) != 1) { - modest_platform_run_information_dialog ((win) ? GTK_WINDOW (win) : NULL, - _("mcen_ib_select_one_message")); + modest_platform_information_banner ((win) ? GTK_WIDGET (win) : NULL, + NULL, _("mcen_ib_select_one_message")); return; } -- 1.7.9.5