mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 23:35:55 +00:00
Only hide Qt's mouse cursor on EGLFS
This commit is contained in:
parent
2e0bd2ec28
commit
91be6c8028
@ -1059,8 +1059,10 @@ void Session::exec(int displayOriginX, int displayOriginY)
|
|||||||
// Disable the screen saver
|
// Disable the screen saver
|
||||||
SDL_DisableScreenSaver();
|
SDL_DisableScreenSaver();
|
||||||
|
|
||||||
// Hide the mouse cursor (relevant on EGLFS/KMSDRM systems)
|
// Hide Qt's fake mouse cursor on EGLFS systems
|
||||||
QGuiApplication::setOverrideCursor(QCursor(Qt::BlankCursor));
|
if (QGuiApplication::platformName() == "eglfs") {
|
||||||
|
QGuiApplication::setOverrideCursor(QCursor(Qt::BlankCursor));
|
||||||
|
}
|
||||||
|
|
||||||
// Set timer resolution to 1 ms on Windows for greater
|
// Set timer resolution to 1 ms on Windows for greater
|
||||||
// sleep precision and more accurate callback timing.
|
// sleep precision and more accurate callback timing.
|
||||||
@ -1274,7 +1276,9 @@ DispatchDeferredCleanup:
|
|||||||
m_InputHandler->setCaptureActive(false);
|
m_InputHandler->setCaptureActive(false);
|
||||||
SDL_EnableScreenSaver();
|
SDL_EnableScreenSaver();
|
||||||
SDL_SetHint(SDL_HINT_TIMER_RESOLUTION, "0");
|
SDL_SetHint(SDL_HINT_TIMER_RESOLUTION, "0");
|
||||||
QGuiApplication::restoreOverrideCursor();
|
if (QGuiApplication::platformName() == "eglfs") {
|
||||||
|
QGuiApplication::restoreOverrideCursor();
|
||||||
|
}
|
||||||
|
|
||||||
// Raise any keys that are still down
|
// Raise any keys that are still down
|
||||||
m_InputHandler->raiseAllKeys();
|
m_InputHandler->raiseAllKeys();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user