do not expand widgets

This commit is contained in:
Josh Holtrop 2011-03-19 18:23:25 -04:00
parent eb111d8590
commit 861d0e9e32

View File

@ -51,10 +51,10 @@ class Window:
hbox.pack_start(exit_button, expand = False) hbox.pack_start(exit_button, expand = False)
vbox = gtk.VBox() vbox = gtk.VBox()
vbox.pack_start(self.menubar) vbox.pack_start(self.menubar, expand = False)
vbox.pack_start(self.projects_container) vbox.pack_start(self.projects_container, expand = False)
vbox.pack_start(gtk.HSeparator()) vbox.pack_end(hbox, expand = False)
vbox.pack_start(hbox) vbox.pack_end(gtk.HSeparator(), expand = False)
self.window.add(vbox) self.window.add(vbox)
@ -187,7 +187,7 @@ class Window:
self.projects_table.set_row_spacings(3) self.projects_table.set_row_spacings(3)
row += 1 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_present = True
self.projects_table.show_all() self.projects_table.show_all()