diff options
author | Piplup <[email protected]> | 2022-11-04 06:30:39 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-04 02:30:39 -0400 |
commit | ece22fcbc7f120dd2929c60545b81f0e3211c028 (patch) | |
tree | 9b5da209fca4b3bce04fd95077a4ea121961d743 /src/yuzu/uisettings.h | |
parent | 38e4382f532d606afbd3969990a9ca3bac70e557 (diff) | |
download | yuzu-android-ece22fcbc7f120dd2929c60545b81f0e3211c028.tar.gz yuzu-android-ece22fcbc7f120dd2929c60545b81f0e3211c028.zip |
UI: Add options to hide extra columns (#9093)
UI change that allows the user to hide the size and or file types columns
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 4f5b2a99d..452038cd9 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -132,6 +132,10 @@ struct Values { // Compatibility List Settings::Setting<bool> show_compat{false, "show_compat"}; + // Size & File Types Column + Settings::Setting<bool> show_size{true, "show_size"}; + Settings::Setting<bool> show_types{true, "show_types"}; + bool configuration_applied; bool reset_to_defaults; Settings::Setting<bool> disable_web_applet{true, "disable_web_applet"}; |