fix add_widget to use correct size_y when adding rows

This commit is contained in:
David Kwak
2014-04-03 11:32:39 -07:00
parent a4f3baf38f
commit 0e28203ea9
+3 -1
View File
@@ -230,7 +230,9 @@
}else{
pos = {
col: col,
row: row
row: row,
size_x: size_x,
size_y: size_y
};
this.empty_cells(col, row, size_x, size_y);