mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Qt: Fix initial/default value of fullscreen cursor hide
This commit is contained in:
parent
cf05037428
commit
add2b5fbae
|
@ -1787,7 +1787,7 @@ bool MainWindow::isRenderingToMain() const
|
||||||
bool MainWindow::shouldHideMouseCursor() const
|
bool MainWindow::shouldHideMouseCursor() const
|
||||||
{
|
{
|
||||||
return m_hide_mouse_cursor ||
|
return m_hide_mouse_cursor ||
|
||||||
(isRenderingFullscreen() && Host::GetBoolSettingValue("Main", "HideCursorInFullscreen", false));
|
(isRenderingFullscreen() && Host::GetBoolSettingValue("Main", "HideCursorInFullscreen", true));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWindow::shouldHideMainWindow() const
|
bool MainWindow::shouldHideMainWindow() const
|
||||||
|
|
Loading…
Reference in a new issue