mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-14 09:06:51 +02:00
Fixed bug that disabled cursor for windows
This commit is contained in:
parent
6faa7f8f77
commit
edf5d5bda1
1 changed files with 1 additions and 1 deletions
|
@ -1104,7 +1104,7 @@ void Application::mouseMoveEvent(QMouseEvent* event) {
|
|||
|
||||
_lastMouseMove = usecTimestampNow();
|
||||
|
||||
if (_mouseHidden && !OculusManager::isConnected) {
|
||||
if (_mouseHidden && !OculusManager::isConnected()) {
|
||||
getGLWidget()->setCursor(Qt::ArrowCursor);
|
||||
_mouseHidden = false;
|
||||
_seenMouseMove = true;
|
||||
|
|
Loading…
Reference in a new issue