mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-30 01:25:51 +00:00
Qt: Fix compatibility column not showing by default
This commit is contained in:
parent
075380f8e0
commit
f5fd37c4c4
|
@ -386,7 +386,7 @@ static QString getColumnVisibilitySettingsKeyName(int column)
|
||||||
void GameListWidget::loadTableViewColumnVisibilitySettings()
|
void GameListWidget::loadTableViewColumnVisibilitySettings()
|
||||||
{
|
{
|
||||||
static constexpr std::array<bool, GameListModel::Column_Count> DEFAULT_VISIBILITY = {
|
static constexpr std::array<bool, GameListModel::Column_Count> DEFAULT_VISIBILITY = {
|
||||||
{true, true, true, false, true, true}};
|
{true, true, true, false, true, true, true}};
|
||||||
|
|
||||||
for (int column = 0; column < GameListModel::Column_Count; column++)
|
for (int column = 0; column < GameListModel::Column_Count; column++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue