Hello,

I am developing a user interface with pyqtgraph and in the process of 
adding QPushButton widgets to a LayoutWidget I found a small typo in 
LayoutWidget.py thats killing functionality.


line 76-78

def getWidget(self, row, col):
    """Return the widget in (*row*, *col*)"""
    return self.row[row][col]

should read
def getWidget(self, row, col):
    """Return the widget in (*row*, *col*)"""
    return self.rows[row][col]

Being new to the community, I don't know who to show this to so here I am.

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/26077273-f7f6-469c-b361-df856aee1a6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to