Merge pull request #424 from Koerty/fading-out-md_name

Fix md_name not fading out
This commit is contained in:
John Rassa 2018-04-22 20:15:06 -04:00 committed by GitHub
commit c625c414bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -223,6 +223,7 @@ void DetailedGameListView::updateInfoPanel()
std::vector<GuiComponent*> comps = getMDValues();
comps.push_back(&mImage);
comps.push_back(&mDescription);
comps.push_back(&mName);
std::vector<TextComponent*> labels = getMDLabels();
comps.insert(comps.cend(), labels.cbegin(), labels.cend());

View file

@ -267,6 +267,7 @@ void GridGameListView::updateInfoPanel()
std::vector<GuiComponent*> comps = getMDValues();
comps.push_back(&mDescription);
comps.push_back(&mName);
std::vector<TextComponent*> labels = getMDLabels();
comps.insert(comps.cend(), labels.cbegin(), labels.cend());

View file

@ -281,6 +281,7 @@ void VideoGameListView::updateInfoPanel()
comps.push_back(mVideo);
comps.push_back(&mDescription);
comps.push_back(&mImage);
comps.push_back(&mName);
std::vector<TextComponent*> labels = getMDLabels();
comps.insert(comps.cend(), labels.cbegin(), labels.cend());