From 8391efc6a01a30b91fa7a19f5e7df8b52bfdde46 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Sun, 31 May 2009 21:50:55 +0200 Subject: [PATCH] If no disk available, information banner is shown even if no window visible (fixes NB#119631). --- src/modest-ui-actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index bbb44a7..f6ae111 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -855,7 +855,7 @@ modest_ui_actions_compose_msg(ModestWindow *win, if (available_disk < MIN_FREE_SPACE || expected_size > available_disk) { gchar *msg = g_strdup_printf (_KR("cerm_device_memory_full"), ""); - modest_platform_information_banner (NULL, NULL, msg); + modest_platform_system_banner (NULL, NULL, msg); g_free (msg); return; -- 1.7.9.5