[gnome-boxes] app: Don't put EmptyBoxes actor below all its siblings



commit 28990e6e90de47cdc13ba596529948405524a42a
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Fri Nov 15 16:22:18 2013 +0000

    app: Don't put EmptyBoxes actor below all its siblings
    
    Instead put it explicitly under notificationbar actor. This fixes the
    regression of EmptyBoxes not becoming visible when it should.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=710290

 src/app.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/app.vala b/src/app.vala
index 87cba6d..1092278 100644
--- a/src/app.vala
+++ b/src/app.vala
@@ -651,7 +651,7 @@ private class Boxes.App: Boxes.UI {
 
         content_bin_actor.add (wizard.actor);
         content_bin_actor.add (properties.actor);
-        below_bin_actor.insert_child_below (empty_boxes.actor, null);
+        below_bin_actor.insert_child_below (empty_boxes.actor, notificationbar.actor);
 
         properties.actor.hide ();
         empty_boxes.actor.hide ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]