diff options
| author | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-10-19 03:51:51 -0700 |
|---|---|---|
| committer | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-10-19 03:51:51 -0700 |
| commit | 470e89a8edb73f6710ce652e2ecfe25049307109 (patch) | |
| tree | 110cebdea3af73f143fca3c282745f713d263217 /src/yuzu/uisettings.h | |
| parent | c75a4bdeaa893974932221ad6ace69aa67e4d9fa (diff) | |
UI: Add option to hide the compatibility list
Option is added directly below the option for the addons column
Defaulting to hide compatibility list. Changing default works properly.
Co-authored-by: Piplup <piplup55@users.noreply.github.com>
Diffstat (limited to 'src/yuzu/uisettings.h')
| -rw-r--r-- | src/yuzu/uisettings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 753797efc..4f5b2a99d 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -129,6 +129,9 @@ struct Values { Settings::Setting<bool> favorites_expanded{true, "favorites_expanded"}; QVector<u64> favorited_ids; + // Compatibility List + Settings::Setting<bool> show_compat{false, "show_compat"}; + bool configuration_applied; bool reset_to_defaults; Settings::Setting<bool> disable_web_applet{true, "disable_web_applet"}; |
