WaitCusor not working in qt6
Solved
Qt 6
-
I have python code works with qt5
Qt.QApplication.setOverrideCursor(Qt.Qt.WaitCusor)
I tried to port this to use qt6
QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.WaitCursor)
Then got Error :
AttributeError:type object "Qt" has no attribute "WaitCursor".What should I use.
Thanks. -
-
There's the porting guide to help you get started.