aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/uisettings.h
diff options
context:
space:
mode:
authorEBADBEEF <errno@ebadf.com>2023-01-22 23:36:40 -0800
committerEBADBEEF <errno@ebadf.com>2023-01-22 23:36:40 -0800
commita84ad180e8e16ed04de5551b2f72349e2ec4d215 (patch)
tree0f40a9489a5370c12066af8ce24b1df386cffd37 /src/yuzu/uisettings.h
parentf99f618d45ad862c4bc23fc28c91d1c48218a3cb (diff)
qt: add option to disable controller applet
- add checkbox to disable the controller applet UI - when controller applet is disabled, use the yuzu-cmd fallback controller applet that applies controller config based on rules - See https://github.com/yuzu-emu/yuzu/issues/8552 for some discussion
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r--src/yuzu/uisettings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h
index db43b7033..20a517d34 100644
--- a/src/yuzu/uisettings.h
+++ b/src/yuzu/uisettings.h
@@ -77,6 +77,8 @@ struct Values {
Settings::Setting<bool> pause_when_in_background{false, "pauseWhenInBackground"};
Settings::Setting<bool> mute_when_in_background{false, "muteWhenInBackground"};
Settings::Setting<bool> hide_mouse{true, "hideInactiveMouse"};
+ Settings::Setting<bool> controller_applet_disabled{false, "disableControllerApplet"};
+
// Set when Vulkan is known to crash the application
bool has_broken_vulkan = false;