mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 23:55:38 +00:00
Merge pull request #424 from Koerty/fading-out-md_name
Fix md_name not fading out
This commit is contained in:
commit
c625c414bc
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in a new issue