Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.3.2, 5.15.1
-
None
-
OS X 10.10.1
Qt 5.3.2
Description
QWidget::setCursor does not work in OS X.
Sample:
int main( int argc, char **argv) { QApplication a(argc, argv); QWidget w; w.setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::ToolTip); w.setFocusPolicy(Qt::WheelFocus); w.setMouseTracking(true); w.setCursor(Qt::CrossCursor); // Cursor is not changed w.setFixedSize(200, 200); w.move(200, 200); w.show(); return a.exec(); }
Attachments
Issue Links
- relates to
-
QTBUG-96374 Inactive Qt::Tool window with Qt::FramelessWindowHint flag does not show custom cursor
- Closed