Reverting to revision 5189, using the latest debian/changelog file.
[modest] / src / maemo / modest-platform.c
index 27990e9..4519e0f 100644 (file)
@@ -1659,29 +1659,11 @@ modest_platform_information_banner (GtkWidget *parent,
                                    const gchar *icon_name,
                                    const gchar *text)
 {
-       GtkWidget *banner, *banner_parent = NULL;
+       GtkWidget *banner;
        ModestWindowMgr *mgr;
 
        mgr = modest_runtime_get_window_mgr ();
-       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);
+       banner = hildon_banner_show_information (parent, icon_name, text);
 
        modest_window_mgr_register_banner (mgr);
        g_object_ref (mgr);