fix row that project title appears on

This commit is contained in:
Josh Holtrop 2011-02-25 15:16:25 -05:00
parent fba10585f3
commit 2a945f5bf0

View File

@ -82,6 +82,7 @@ class Window:
row = 1 row = 1
for p in projects_to_show: for p in projects_to_show:
self.projects_table.attach(gtk.Label(p), 0, 1, row, row + 1) self.projects_table.attach(gtk.Label(p), 0, 1, row, row + 1)
row += 1
self.projects_table.attach(self.new_project_combobox, 0, 1, self.projects_table.attach(self.new_project_combobox, 0, 1,
rows - 1, rows) rows - 1, rows)