From 914fae35dda81fed45a2d7930e20ed3823b98dcb Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Mon, 6 Oct 2008 17:29:31 +0000 Subject: [PATCH] * Fixes NB#86408, merged from trunk r4871 pmo-diablo-r5923 --- src/maemo/modest-platform.c | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/maemo/modest-platform.c b/src/maemo/modest-platform.c index 734611e..3b72f02 100644 --- a/src/maemo/modest-platform.c +++ b/src/maemo/modest-platform.c @@ -1654,11 +1654,29 @@ modest_platform_information_banner (GtkWidget *parent, const gchar *icon_name, const gchar *text) { - GtkWidget *banner; + GtkWidget *banner, *banner_parent = NULL; ModestWindowMgr *mgr; mgr = modest_runtime_get_window_mgr (); - banner = hildon_banner_show_information (parent, icon_name, text); + if (parent && GTK_IS_WINDOW (parent)) { + /* If the window is the active one then show the + banner on top of this window */ + if (gtk_window_is_active (GTK_WINDOW (parent))) + banner_parent = parent; + /* If the window is not the topmost but it's visible + (it's minimized for example) then show the banner + with no parent */ + else if (GTK_WIDGET_VISIBLE (parent)) + banner_parent = NULL; + /* If the window is hidden (like the main window when + running in the background) then do not show + anything */ + else + return; + } + + + banner = hildon_banner_show_information (banner_parent, icon_name, text); modest_window_mgr_register_banner (mgr); g_object_ref (mgr); -- 1.7.9.5