PySide2/QtWidgets problem in setStandardButtons
Unsolved
Qt for Python
-
-
@ZEZON
Please paste code not screenshots so people can copy from it.Your code should be working, but I'm afraid it looks like it isn't due to some PySide2->Python issue. https://www.pythonguis.com/tutorials/pyside-dialogs/ for PySide2 even includes same line as you. If you can test under PyQt5 that would confirm.
I don't suppose it will help, but try:
buttons = QMessageBox.Yes | QMessageBox.No mais.setStandardButtons(buttons)
Actually, if you try the above one and it errors please show which of the two lines it complains about, that would be useful to know.
I don't know whether something like
buttons = QMessageBox.StandardButton(QMessageBox.Yes | QMessageBox.No) mais.setStandardButtons(buttons)
would work.
2/2