Qt 6.11 is out! See what's new in the release
blog
Hide Cursor
QML and Qt Quick
2
Posts
2
Posters
1.5k
Views
1
Watching
-
Hi, I would like to hide the mousecursor in my fullscreen applicatoin.
Setting the cursorShape to Qt.BlankCursor in a mousearea does not work, because it requires me to move my mouse once before the shape gets redrawn.
Are there other ways of accomplishing this? I'm using Go instead of C++.
-
When running the application on main.cpp:
QGuiApplication app(argc, argv);
QApplication::setOverrideCursor(QCursor(Qt::BlankCursor));