CComponentsFooter: apply showButtonContour() after init of labels

Function was without effect after adding of button objects,
showButtonContour() now changes property explicit for all items, also
after their addition to chain.


Origin commit data
------------------
Branch: ni/coolstream
Commit: f7860fed35
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-05-02 (Fri, 02 May 2014)



------------------
This commit was generated by Migit
This commit is contained in:
2014-05-02 00:32:32 +02:00
parent 113c07a27a
commit 12e0a4b02e
2 changed files with 11 additions and 1 deletions

View File

@@ -187,3 +187,13 @@ void CComponentsFooter::setButtonLabel(const char *button_icon, const neutrino_l
setButtonLabel(button_icon, txt, chain_width, label_width);
}
void CComponentsFooter::showButtonContour(bool show)
{
btn_contour = show;
if (chain) {
for (size_t i= 0; i< chain->size(); i++)
chain->getCCItem(i)->doPaintBg(btn_contour);
}
}