Backed out changeset: c1085bbb3dae

--HG--
branch : develop
feature/pipeline-tools
Nimetu 8 years ago
parent 254c7690f8
commit 04e774dc37

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

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

Loading…
Cancel
Save