[gnome-boxes] app: Make stacks non-homogeneous



commit fc218e0904c6cac39de46e2f4138a3739b7e54d7
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Sat Feb 22 14:36:32 2014 +0000

    app: Make stacks non-homogeneous
    
    This fixes the issue of at least properties going beyond the screen when
    switching to it from display page in fullscreen but I'm hoping it solves
    some other similar issues too that I can't reproduce on my machine.

 src/app.vala |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/app.vala b/src/app.vala
index d4ddcb0..4511a29 100644
--- a/src/app.vala
+++ b/src/app.vala
@@ -533,6 +533,7 @@ private class Boxes.App: GLib.Object, Boxes.UI {
         window.add (main_vbox);
 
         stack = new Gtk.Stack ();
+        stack.homogeneous = false;
         main_vbox.add (stack);
 
         var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
@@ -571,6 +572,7 @@ private class Boxes.App: GLib.Object, Boxes.UI {
         window.set_titlebar (topbar);
 
         below_bin = new Gtk.Stack ();
+        below_bin.homogeneous = false;
         below_bin.transition_type = Gtk.StackTransitionType.CROSSFADE;
         below_bin.hexpand = true;
         below_bin.vexpand = true;
@@ -588,6 +590,7 @@ private class Boxes.App: GLib.Object, Boxes.UI {
         below_bin.add_named (below_bin_hbox, "below-bin-hbox");
 
         content_bin = new Gtk.Stack ();
+        content_bin.homogeneous = false;
         content_bin.vexpand = true;
         content_bin.hexpand = true;
         content_bin.add (wizard);


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