Fixed: CViewText not updating visible text when used by CCtrlTextButton

This commit is contained in:
Nimetu 2015-11-08 05:15:40 +02:00
parent 356cc7c3df
commit f1e4fa9739

View file

@ -42,6 +42,8 @@ namespace NLGUI
// *************************************************************************** // ***************************************************************************
void CViewText::setupDefault () void CViewText::setupDefault ()
{ {
_ParentElm = NULL;
_CaseMode = CaseNormal; _CaseMode = CaseNormal;
_Underlined = false; _Underlined = false;
_StrikeThrough = false; _StrikeThrough = false;
@ -2650,6 +2652,10 @@ namespace NLGUI
void CViewText::onInvalidateContent() void CViewText::onInvalidateContent()
{ {
_InvalidTextContext= true; _InvalidTextContext= true;
if (_ParentElm)
_ParentElm->invalidateCoords();
invalidateCoords(); invalidateCoords();
} }