Merge with develop

This commit is contained in:
Nimetu 2016-12-21 23:48:28 +02:00
parent d994a29d79
commit 485c4721bc
2 changed files with 14 additions and 2 deletions

View file

@ -446,7 +446,13 @@ namespace NLGUI
// ***************************************************************************
sint32 CCtrlButton::getMaxUsedW() const
{
return _W;
if (_Scale)
return _WReal;
sint32 txw, txh;
CViewRenderer &rVR = *CViewRenderer::getInstance();
rVR.getTextureSizeFromId (_TextureIdNormal, txw, txh);
return txw;
}
// ***************************************************************************

View file

@ -511,7 +511,13 @@ namespace NLGUI
// ***************************************************************************
sint32 CViewBitmap::getMaxUsedW() const
{
return _W;
if (_Scale)
return _WReal;
sint32 txw, txh;
CViewRenderer &rVR = *CViewRenderer::getInstance();
rVR.getTextureSizeFromId (_TextureId, txw, txh);
return txw;
}
// ***************************************************************************