Move hMax correction from CComponentsItemBox to CComponentsTitleBar

Origin commit data
------------------
Branch: ni/coolstream
Commit: 79c4ad05a2
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2012-08-27 (Mon, 27 Aug 2012)

Origin message was:
------------------
* Move hMax correction from CComponentsItemBox to CComponentsTitleBar

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2012-08-27 03:18:04 +02:00
committed by Thilo Graf
parent ea539a4bbb
commit 0cf209f3ad

View File

@@ -994,8 +994,6 @@ void CComponentsItemBox::calculateElementsInitPart1()
if (v_element_data[i].type != CC_ITEMBOX_PICTURE)
hMax = max(v_element_data[i].height, hMax);
}
if (!has_TextElement)
hMax = max(font_text->getHeight(), hMax);
}
void CComponentsItemBox::calculateElementsInitPart2()
@@ -1157,6 +1155,10 @@ void CComponentsTitleBar::calculateElements()
calculateElementsInitPart1();
// hMax correction if no text element.
if (!has_TextElement)
hMax = max(font_text->getHeight(), hMax);
// Calculate logo
for (i = 0; i < v_element_data.size(); i++) {
if (v_element_data[i].type == CC_ITEMBOX_PICTURE) {