Fixed an issue where the gamelist view was not updated properly.

This commit is contained in:
Leon Styhre 2020-10-10 15:26:17 +02:00
parent 7832c4fbe0
commit 109a8a0b14
2 changed files with 2 additions and 0 deletions

View file

@ -393,6 +393,7 @@ std::vector<GuiComponent*> DetailedGameListView::getMDValues()
void DetailedGameListView::onShow()
{
mLastUpdated = nullptr;
GuiComponent::onShow();
updateInfoPanel();
}

View file

@ -462,6 +462,7 @@ void VideoGameListView::update(int deltaTime)
void VideoGameListView::onShow()
{
mLastUpdated = nullptr;
GuiComponent::onShow();
updateInfoPanel();
}