repopulate list after applying theme to ensure image source is updated

This commit is contained in:
John Rassa 2019-11-06 20:22:30 -05:00
parent eb1db369c2
commit 94b2821eb7

View file

@ -179,6 +179,8 @@ void GridGameListView::onThemeChanged(const std::shared_ptr<ThemeData>& theme)
mDescription.setSize(mDescContainer.getSize().x(), 0);
mDescription.applyTheme(theme, getName(), "md_description", ALL ^ (POSITION | ThemeFlags::SIZE | ThemeFlags::ORIGIN | TEXT | ROTATION));
populateList(mRoot->getChildrenListToDisplay());
sortChildren();
}