diff options
author | lat9nq <[email protected]> | 2023-05-09 01:35:25 -0400 |
---|---|---|
committer | lat9nq <[email protected]> | 2023-07-21 10:56:07 -0400 |
commit | 464aad52cd644bdc32ca4eb35b0ce669c3b30c4f (patch) | |
tree | 17ceb24d150d42fa154343c578062cad6581bd7e /src/yuzu/uisettings.h | |
parent | ea4afbfc54319b6fb4d0f4546da048bf68bdad3b (diff) | |
download | yuzu-android-464aad52cd644bdc32ca4eb35b0ce669c3b30c4f.tar.gz yuzu-android-464aad52cd644bdc32ca4eb35b0ce669c3b30c4f.zip |
settings: Add UiGeneral class
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 53cdd7fcb..9e2cea4d6 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -78,17 +78,18 @@ struct Values { Setting<bool> show_filter_bar{linkage, true, "showFilterBar", Category::Ui}; Setting<bool> show_status_bar{linkage, true, "showStatusBar", Category::Ui}; - Setting<bool> confirm_before_closing{linkage, true, "confirmClose", Category::Ui}; + Setting<bool> confirm_before_closing{linkage, true, "confirmClose", Category::UiGeneral}; Setting<bool> first_start{linkage, true, "firstStart", Category::Ui}; - Setting<bool> pause_when_in_background{linkage, false, "pauseWhenInBackground", Category::Ui}; + Setting<bool> pause_when_in_background{linkage, false, "pauseWhenInBackground", + Category::UiGeneral}; Setting<bool> mute_when_in_background{linkage, false, "muteWhenInBackground", Category::Ui}; - Setting<bool> hide_mouse{linkage, true, "hideInactiveMouse", Category::Ui}; + Setting<bool> hide_mouse{linkage, true, "hideInactiveMouse", Category::UiGeneral}; Setting<bool> controller_applet_disabled{linkage, false, "disableControllerApplet", - Category::Ui}; + Category::UiGeneral}; // Set when Vulkan is known to crash the application bool has_broken_vulkan = false; - Setting<bool> select_user_on_boot{linkage, false, "select_user_on_boot", Category::Ui}; + Setting<bool> select_user_on_boot{linkage, false, "select_user_on_boot", Category::UiGeneral}; Setting<bool> disable_web_applet{linkage, true, "disable_web_applet", Category::Ui}; // Discord RPC |