diff options
author | Romain Failliot <romain.failliot@foolstep.com> | 2021-10-13 22:24:34 +0200 |
---|---|---|
committer | Romain Failliot <romain.failliot@foolstep.com> | 2021-10-15 22:01:20 +0200 |
commit | ecef109162a18f47ce7878afb251132dea0ff7e2 (patch) | |
tree | b03541cc9cbc845f339d49af964a007d2ae42f5d | |
parent | config: Read network_interface (diff) | |
download | yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar.gz yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar.bz2 yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar.lz yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar.xz yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.tar.zst yuzu-ecef109162a18f47ce7878afb251132dea0ff7e2.zip |
-rw-r--r-- | src/yuzu/uisettings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 81f741f20..cac19452f 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -60,7 +60,7 @@ struct Values { Settings::BasicSetting<bool> confirm_before_closing{true, "confirmClose"}; Settings::BasicSetting<bool> first_start{true, "firstStart"}; Settings::BasicSetting<bool> pause_when_in_background{false, "pauseWhenInBackground"}; - Settings::BasicSetting<bool> hide_mouse{false, "hideInactiveMouse"}; + Settings::BasicSetting<bool> hide_mouse{true, "hideInactiveMouse"}; Settings::BasicSetting<bool> select_user_on_boot{false, "select_user_on_boot"}; |