summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2021-10-15 23:03:10 +0200
committerGitHub <noreply@github.com>2021-10-15 23:03:10 +0200
commitd5c4af2d5b7f8d32f9845b424d73ec9c090c3465 (patch)
tree20853dc9c9cc76dbf6fa7a0b96419a2dbb56525e
parentMerge pull request #7185 from Morph1984/make_unique_ui (diff)
parentHide mouse cursor by default (diff)
downloadyuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar.gz
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar.bz2
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar.lz
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar.xz
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.tar.zst
yuzu-d5c4af2d5b7f8d32f9845b424d73ec9c090c3465.zip
-rw-r--r--src/yuzu/uisettings.h2
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"};