Qt: Fix initial/default value of fullscreen cursor hide

This commit is contained in:
Connor McLaughlin 2022-11-23 19:13:13 +10:00
parent cf05037428
commit add2b5fbae
1 changed files with 1 additions and 1 deletions

View File

@ -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