From 861d0e9e32e2bd0a5f5e4bcd796ecaa075015d7f Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 19 Mar 2011 18:23:25 -0400 Subject: [PATCH] do not expand widgets --- Window.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Window.py b/Window.py index 5bd5998..8be4a4b 100644 --- a/Window.py +++ b/Window.py @@ -51,10 +51,10 @@ class Window: hbox.pack_start(exit_button, expand = False) vbox = gtk.VBox() - vbox.pack_start(self.menubar) - vbox.pack_start(self.projects_container) - vbox.pack_start(gtk.HSeparator()) - vbox.pack_start(hbox) + vbox.pack_start(self.menubar, expand = False) + vbox.pack_start(self.projects_container, expand = False) + vbox.pack_end(hbox, expand = False) + vbox.pack_end(gtk.HSeparator(), expand = False) self.window.add(vbox) @@ -187,7 +187,7 @@ class Window: self.projects_table.set_row_spacings(3) row += 1 - self.projects_container.pack_start(self.projects_table) + self.projects_container.pack_start(self.projects_table, expand = False) self.projects_present = True self.projects_table.show_all()