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
|
||||
{
|
||||
return m_hide_mouse_cursor ||
|
||||
(isRenderingFullscreen() && Host::GetBoolSettingValue("Main", "HideCursorInFullscreen", false));
|
||||
(isRenderingFullscreen() && Host::GetBoolSettingValue("Main", "HideCursorInFullscreen", true));
|
||||
}
|
||||
|
||||
bool MainWindow::shouldHideMainWindow() const
|
||||
|
|
Loading…
Reference in New Issue