Fixed: Wrong element width when using scaled texture.

This commit is contained in:
Nimetu 2016-12-21 23:47:50 +02:00
parent b6ab159229
commit 9655669de6
2 changed files with 6 additions and 0 deletions

View file

@ -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);

View file

@ -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);