* Move hMax correction from CComponentsItemBox to CComponentsTitleBar

This commit is contained in:
micha-bbg
2012-08-27 03:18:04 +02:00
committed by Thilo Graf
parent b88f73d595
commit 79c4ad05a2

View File

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