Sdk/TextAreaWidget: Add OnTextChanged signal

This commit is contained in:
Jérôme Leclercq
2017-11-10 13:13:33 +01:00
parent bb6e032b60
commit e3f21b7268
4 changed files with 5 additions and 0 deletions

View File

@@ -172,6 +172,7 @@ namespace Ndk
inline void TextAreaWidget::SetText(const Nz::String& text)
{
m_text = text;
OnTextChanged(this, m_text);
UpdateDisplayText();
}