Update Master

This commit is contained in:
IlyaShurupov 2024-10-11 17:37:31 +03:00 committed by Ilya Shurupov
parent c94f5144e7
commit 5de5dbba23

View file

@ -69,8 +69,8 @@ RectF CollapsableMenu::getHeaderRect() {
} }
RectF CollapsableMenu::getBodyRect() { RectF CollapsableMenu::getBodyRect() {
RectF out = { { this->mArea.pos.x, this->mArea.pos.y + headerHeight }, RectF out = { Vec2F{ this->mArea.pos.x, this->mArea.pos.y + headerHeight },
{ this->mArea.size.x, this->mArea.size.y - headerHeight - mPadding } }; Vec2F{ this->mArea.size.x, this->mArea.size.y - headerHeight - mPadding } };
out.size.y -= mBorderSize * 2; out.size.y -= mBorderSize * 2;