@@ -99,6 +99,8 @@ protected:
void OnUpdate() override;
/// Renders the control's widget.
void OnRender() override;
+ /// Resizes and positions the control's widget.
+ void OnResize() override;
/// Formats the element.
void OnLayout() override;
@@ -140,6 +140,12 @@ void ElementFormControlTextArea::OnRender()
widget->OnRender();
}
+// Formats the element.
+void ElementFormControlTextArea::OnResize()
+{
+ widget->OnResize();
+}
+
// Formats the element.
void ElementFormControlTextArea::OnLayout()
{