Merge pull request #134 from cjtk/develop

Fix bug in LayoutWidget.py getWidget (self.rows, not self.row)
This commit is contained in:
Ogi Moore 2019-06-06 15:58:17 -07:00 committed by GitHub
commit a51ff8eb61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ class LayoutWidget(QtGui.QWidget):
def getWidget(self, row, col):
"""Return the widget in (*row*, *col*)"""
return self.row[row][col]
return self.rows[row][col]
#def itemIndex(self, item):
#for i in range(self.layout.count()):