mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 12:05:23 +00:00
Qt: Hide firmware and path columns by default
This commit is contained in:
parent
3e71284d56
commit
49a4015d5d
1 changed files with 2 additions and 2 deletions
|
@ -197,8 +197,8 @@ logs::level gui_settings::GetLogLevel()
|
|||
|
||||
bool gui_settings::GetGamelistColVisibility(int col)
|
||||
{
|
||||
// hide sound format and parental level
|
||||
bool show = col != gui::column_sound && col != gui::column_parental;
|
||||
// hide sound format, parental level, firmware version and path by default
|
||||
bool show = col != gui::column_sound && col != gui::column_parental && col != gui::column_firmware && col != gui::column_path;
|
||||
return GetValue(gui_save(gui::game_list, "Col" + QString::number(col) + "visible", show)).toBool();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue