mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-29 12:34:17 +01:00
Linux cursor show and hide. (#149)
This commit is contained in:
parent
b1e92f1779
commit
68fa5b32a1
@ -1176,7 +1176,14 @@ void MainWindow::ShowCursor(bool state)
|
|||||||
} while (counter >= 0);
|
} while (counter >= 0);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
cemuLog_log(LogType::Force, "MainWindow::ShowCursor - todo");
|
if (state)
|
||||||
|
{
|
||||||
|
wxSetCursor(wxNullCursor); // restore system default cursor
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
wxSetCursor(wxCursor(wxCURSOR_BLANK));
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user