mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Wrong size for list element
--HG-- branch : develop
This commit is contained in:
parent
524f80c8a0
commit
472ccb758a
1 changed files with 8 additions and 9 deletions
|
@ -740,13 +740,11 @@ namespace NLGUI
|
||||||
|
|
||||||
CInterfaceGroup::updateCoords();
|
CInterfaceGroup::updateCoords();
|
||||||
|
|
||||||
sint32 nCurrentX = 0; // Current offset of an element
|
|
||||||
|
|
||||||
EAlign addElt = _AddElt;
|
EAlign addElt = _AddElt;
|
||||||
if ((addElt == Top) || (addElt == Bottom))
|
if ((addElt == Top) || (addElt == Bottom))
|
||||||
{
|
{
|
||||||
// Calculate size
|
// Calculate size
|
||||||
sint32 newH = 0, newW = 0;
|
sint32 newH = 0;
|
||||||
bool bFirst = true;
|
bool bFirst = true;
|
||||||
|
|
||||||
for (uint32 i = 0; i < _Elements.size(); ++i)
|
for (uint32 i = 0; i < _Elements.size(); ++i)
|
||||||
|
@ -756,10 +754,7 @@ namespace NLGUI
|
||||||
if (!bFirst)
|
if (!bFirst)
|
||||||
newH += _Space;
|
newH += _Space;
|
||||||
bFirst = false;
|
bFirst = false;
|
||||||
nCurrentX += _Elements[i].Element->getX();
|
|
||||||
newW = max (newW, _Elements[i].Element->getW()+(sint32)abs(nCurrentX));
|
|
||||||
}
|
}
|
||||||
_W = max(newW, _MinW);
|
|
||||||
_H = max(newH, _MinH);
|
_H = max(newH, _MinH);
|
||||||
if (_DynamicDisplaySize)
|
if (_DynamicDisplaySize)
|
||||||
{
|
{
|
||||||
|
@ -767,10 +762,13 @@ namespace NLGUI
|
||||||
_MaxH = _H;
|
_MaxH = _H;
|
||||||
}
|
}
|
||||||
if (_H < _MaxH) setOfsY(0);
|
if (_H < _MaxH) setOfsY(0);
|
||||||
|
|
||||||
|
// if width is not from parent, then ensure minimum size
|
||||||
|
if ((_SizeRef & 1) == 0) _W = max(_W, _MinW);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sint32 newW = 0, newH = 0;
|
sint32 newW = 0;
|
||||||
bool bFirst = true;
|
bool bFirst = true;
|
||||||
|
|
||||||
for (uint32 i = 0; i < _Elements.size(); ++i)
|
for (uint32 i = 0; i < _Elements.size(); ++i)
|
||||||
|
@ -780,16 +778,17 @@ namespace NLGUI
|
||||||
if (!bFirst)
|
if (!bFirst)
|
||||||
newW += _Space;
|
newW += _Space;
|
||||||
bFirst = false;
|
bFirst = false;
|
||||||
newH = max (newH, _Elements[i].Element->getH());
|
|
||||||
}
|
}
|
||||||
_W = max(newW, _MinW);
|
_W = max(newW, _MinW);
|
||||||
_H = max(newH, _MinH);
|
|
||||||
if (_DynamicDisplaySize)
|
if (_DynamicDisplaySize)
|
||||||
{
|
{
|
||||||
_MaxW = _W;
|
_MaxW = _W;
|
||||||
_MaxH = _H;
|
_MaxH = _H;
|
||||||
}
|
}
|
||||||
if (_W < _MaxW) setOfsX(0);
|
if (_W < _MaxW) setOfsX(0);
|
||||||
|
|
||||||
|
// if height is not from parent, then ensure minimum size
|
||||||
|
if ((_SizeRef & 2) == 0) _H = max(_H, _MinH);
|
||||||
}
|
}
|
||||||
|
|
||||||
CInterfaceElement::updateCoords();
|
CInterfaceElement::updateCoords();
|
||||||
|
|
Loading…
Reference in a new issue