Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
1.1.0
-
Windows 7 64-bit, Qt 4.7.4 32-bit, PySide 1.1.1 32-bit, Python 2.7.3 32-bit
-
095fd339a238fe2ad5ec6080119882436d95fde3
Description
The clicked signal of QGroupBox has an optional checked argument that is used when the group box is setCheckable(True) to pass the state of the check box. The attached example can be used to see that PyQt passes the correct value of checked but PySide does not pass the checked argument.
The bug is easily worked around by adding the line
checked = self.gb.isChecked()
at the top of your slot (assuming you know the identity of the group box or else use a sender call).
Attachments
Issue Links
- resulted in
-
PYSIDE-909 REG->5.11.2: lambda does not pass argument
- Closed