(svn r13310) -Fix: invalidate OSK when parent editbox changes (from keyboard)

This commit is contained in:
smatz
2008-05-28 15:28:27 +00:00
parent f740702f90
commit 3f000be670
2 changed files with 10 additions and 0 deletions

View File

@@ -203,6 +203,11 @@ struct OskWindow : public Window {
/* make the caret of the parent window also blink */
this->parent->InvalidateWidget(this->text_btn);
}
virtual void OnInvalidateData(int)
{
this->InvalidateWidget(OSK_WIDGET_TEXT);
}
};
static const Widget _osk_widgets[] = {