Browse Source
Merge pull request #7174 from MightyCreak/hide-cursor-by-default
Check "Hide mouse on inactivity" by default
pull/15/merge
Mai M
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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"}; |
|
|
|
|
|
|
|
|