
Any one know how can i fix the icon of cursor ?? The app is done in QT and the widget my mouse hovering in the picture is Qlable , actually its not only the problem here cursor appears same in Qwebkit and some other widgets.
The cursor shape can be set with QCursor::setShape(). It is also possible to set a specific cursor for a specific widget:
yourWidget.setCursor(Qt::ArrowCursor);
and even to override the cursor for your entire application with QGuiApplication::setOverrideCursor(), e.g.
QApplication::setOverrideCursor(QCursor(Qt::ArrowCursor));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With