mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Wrong element width when using scaled texture.
This commit is contained in:
parent
b6ab159229
commit
9655669de6
2 changed files with 6 additions and 0 deletions
|
@ -446,6 +446,9 @@ namespace NLGUI
|
|||
// ***************************************************************************
|
||||
sint32 CCtrlButton::getMaxUsedW() const
|
||||
{
|
||||
if (_Scale)
|
||||
return _WReal;
|
||||
|
||||
sint32 txw, txh;
|
||||
CViewRenderer &rVR = *CViewRenderer::getInstance();
|
||||
rVR.getTextureSizeFromId (_TextureIdNormal, txw, txh);
|
||||
|
|
|
@ -511,6 +511,9 @@ namespace NLGUI
|
|||
// ***************************************************************************
|
||||
sint32 CViewBitmap::getMaxUsedW() const
|
||||
{
|
||||
if (_Scale)
|
||||
return _WReal;
|
||||
|
||||
sint32 txw, txh;
|
||||
CViewRenderer &rVR = *CViewRenderer::getInstance();
|
||||
rVR.getTextureSizeFromId (_TextureId, txw, txh);
|
||||
|
|
Loading…
Reference in a new issue