summaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-10-10 11:45:39 -0400
committerChris Lumens <clumens@redhat.com>2012-10-10 11:45:39 -0400
commita81fc3b991c122fb5380604a6b76842ae6cceb0a (patch)
tree08429e07253def82b18b2c134375f34d9ff3645d /widgets
parenteeaa36e1c79373546c3b48cbfc3c9f1133b53a94 (diff)
downloadanaconda-a81fc3b991c122fb5380604a6b76842ae6cceb0a.tar.gz
anaconda-a81fc3b991c122fb5380604a6b76842ae6cceb0a.tar.xz
anaconda-a81fc3b991c122fb5380604a6b76842ae6cceb0a.zip
Another attempt at fixing the squished screen bug (#849211).
This doesn't fix the redraw-related size problem. I think that might just be an artifact of not using a compositing manager. This merely attempts to fix it so we don't display a spoke entirely smashed up in the upper left corner of the screen.
Diffstat (limited to 'widgets')
-rw-r--r--widgets/src/BaseWindow.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/src/BaseWindow.c b/widgets/src/BaseWindow.c
index bc212e3ee..dd7d41fa6 100644
--- a/widgets/src/BaseWindow.c
+++ b/widgets/src/BaseWindow.c
@@ -194,6 +194,7 @@ static void anaconda_base_window_init(AnacondaBaseWindow *win) {
/* Set properties on the parent (Gtk.Window) class. */
gtk_window_set_decorated(GTK_WINDOW(win), FALSE);
gtk_window_maximize(GTK_WINDOW(win));
+ g_object_set(win, "expand", TRUE, NULL);
gtk_container_set_border_width(GTK_CONTAINER(win), 0);
/* First, construct a top-level box that everything will go in. Remember