Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Not Evaluated
-
Resolution: Out of scope
-
Affects Version/s: 4.8.2
-
Fix Version/s: None
-
Component/s: (Inactive) GUI: QWS Integration (Qt4)
-
Labels:None
-
Environment:Embedded Linux
Description
During application startup,it will always draw the mouse cursor based on the coordinates it receives.
In src/gui/embedded/qwscursor_qws.cpp, if we add setCursor(QWSCursor::systemCursor(Qt::BlankCursor)) instead of setCursor(QWSCursor::systemCursor(Qt::ArrowCursor)), it will hide the cursor during application startup.
To keep it hidden the application must call
QApplication::setOverrideCursor(Qt::BlankCursor);
Otherwise the cursor returns when the mouse is moved.
Please validate if the change is OK for the embedded linux Qt 4.8.2 open source version.