How to Disable the QDialog windows in python
Unsolved
Qt for Python
-
How to Disable the QDialog windows in python
-
@john14
QWidget::setDisabled(bool disable) or setEnabled(bool) are avialble to anyQWidget
, including aQDialog
. If that is what you are wanting.
1/2