Move hMax correction from CComponentsItemBox to CComponentsTitleBar

Origin commit data
------------------
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
This commit is contained in:
Michael Liebmann
2012-08-27 03:18:04 +02:00
committed by Thilo Graf
parent 49379d201f
commit b8912864cb

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) {