Redraw editbox when text changes

This commit is contained in:
elasota
2020-02-07 02:44:13 -05:00
parent 1fe1c7e24e
commit 507019abda

View File

@@ -62,6 +62,13 @@ namespace PortabilityLayer
m_length = len;
memcpy(m_chars, str.UChars(), len);
if (m_window)
{
DrawSurface *surface = m_window->GetDrawSurface();
DrawControl(surface);
}
}
PLPasStr EditboxWidget::GetString() const