Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
6.3.0, 6.3.1
-
None
-
Linux-64, Fedora 35/36
Description
`QApplication.setOverrideCursor()` no longer changes the current cursor.
`QWidget.setCursor()` still works though, so changing the cursor itself is not technically broken.
Here is a minimal example that works under PySide6 6.2.4 but doesnt with 6.3.*:
from PySide6.QtCore import Qt from PySide6.QtWidgets import QApplication, QWidget app = QApplication([]) w = QWidget() w.show() # w.setCursor(Qt.WaitCursor) QApplication.setOverrideCursor(Qt.CursorShape.WaitCursor) app.exec()
Attachments
Issue Links
- duplicates
-
PYSIDE-2039 QApplication.setOverrideCursor has no effect
- Closed