From a93f550cab2e0a4cff2a976bd8f5e36428dc809e Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 25 Feb 2011 15:38:34 -0500 Subject: [PATCH] set row spacings --- Window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Window.py b/Window.py index f80d12a..1e59492 100644 --- a/Window.py +++ b/Window.py @@ -89,6 +89,7 @@ class Window: hbox = gtk.HBox() hbox.pack_start(self.add_project_button, expand = False) self.projects_table.attach(hbox, 1, 9, rows - 1, rows) + self.projects_table.set_row_spacings(3) self.projects_container.pack_start(self.projects_table) self.projects_present = True self.projects_table.show_all()