Qt: Fix game grid scale/title setting not loading

This commit is contained in:
Connor McLaughlin 2022-05-23 20:18:53 +10:00 committed by refractionpcsx2
parent 680a3802d7
commit b59d4791cf
1 changed files with 0 additions and 2 deletions

View File

@ -75,8 +75,6 @@ void GameListWidget::initialize()
m_model = new GameListModel(this);
m_model->setCoverScale(QtHost::GetBaseFloatSettingValue("UI", "GameListCoverArtScale", 0.45f));
m_model->setShowCoverTitles(QtHost::GetBaseBoolSettingValue("UI", "GameListShowCoverTitles", true));
m_model->setCoverScale(0.45f);
m_model->setShowCoverTitles(true);
m_sort_model = new GameListSortModel(m_model);
m_sort_model->setSourceModel(m_model);