fix using "rows" var where "row" should be used
This commit is contained in:
parent
a4406fe5a2
commit
eb111d8590
@ -120,7 +120,7 @@ class Window:
|
|||||||
l = gtk.Label()
|
l = gtk.Label()
|
||||||
l.set_markup('<b>Total</b>')
|
l.set_markup('<b>Total</b>')
|
||||||
l.set_alignment(0.0, 0.0)
|
l.set_alignment(0.0, 0.0)
|
||||||
self.projects_table.attach(l, 0, 1, row, rows + 1)
|
self.projects_table.attach(l, 0, 1, row, row + 1)
|
||||||
row += 1
|
row += 1
|
||||||
|
|
||||||
# Add project row
|
# Add project row
|
||||||
|
Loading…
x
Reference in New Issue
Block a user