mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fixed a small issue with missing initialization of some theme label values.
This commit is contained in:
parent
afe5d98c39
commit
96ea80fbcd
|
@ -259,6 +259,10 @@ void DetailedGameListView::updateInfoPanel()
|
|||
mLastPlayed.setValue(file->metadata.get("lastplayed"));
|
||||
mPlayCount.setValue(file->metadata.get("playcount"));
|
||||
}
|
||||
else {
|
||||
mLastPlayed.setValue("");
|
||||
mPlayCount.setValue("");
|
||||
}
|
||||
|
||||
fadingOut = false;
|
||||
}
|
||||
|
|
|
@ -387,6 +387,10 @@ void GridGameListView::updateInfoPanel()
|
|||
mLastPlayed.setValue(file->metadata.get("lastplayed"));
|
||||
mPlayCount.setValue(file->metadata.get("playcount"));
|
||||
}
|
||||
else {
|
||||
mLastPlayed.setValue("");
|
||||
mPlayCount.setValue("");
|
||||
}
|
||||
|
||||
fadingOut = false;
|
||||
}
|
||||
|
|
|
@ -303,6 +303,10 @@ void VideoGameListView::updateInfoPanel()
|
|||
mLastPlayed.setValue(file->metadata.get("lastplayed"));
|
||||
mPlayCount.setValue(file->metadata.get("playcount"));
|
||||
}
|
||||
else {
|
||||
mLastPlayed.setValue("");
|
||||
mPlayCount.setValue("");
|
||||
}
|
||||
|
||||
fadingOut = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue