UI: Add options to hide extra columns (#9093)

UI change that allows the user to hide the size and or file types columns
This commit is contained in:
Piplup
2022-11-04 06:30:39 +00:00
committed by GitHub
parent 38e4382f53
commit ece22fcbc7
5 changed files with 31 additions and 1 deletions

View File

@ -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"};