Update CCtrlTextButton's CViewText's coords after updating it's own coords.

This commit is contained in:
dfighter1985 2014-09-29 17:38:24 +02:00
parent 2383e19561
commit 4d5d67fac7
2 changed files with 5 additions and 2 deletions

View file

@ -875,7 +875,8 @@ namespace NLGUI
// Should have been setuped with addCtrl
nlassert(_Setuped);
_ViewText->updateCoords();
if( _Name == "==MARKED==" )
bool marked = true;
// Compute Size according to bitmap and Text.
if (!(_SizeRef & 1))
@ -890,6 +891,8 @@ namespace NLGUI
}
CViewBase::updateCoords();
_ViewText->updateCoords();
}
// ***************************************************************************

View file

@ -2683,7 +2683,7 @@ namespace NLGUI
e->setParentSize( g );
g->addElement( e );
//e->setName( "==MARKED==" );
e->setName( "==MARKED==" );
draggedElement = NULL;