mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-11 22:27:52 +00:00
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:
parent
7c3bee5601
commit
210d5d29ed
5 changed files with 31 additions and 1 deletions
|
@ -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"};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue