(svn r15424) -Codechange: make it possible to have multiple windows with edit box open simultaniously (Zuu).
This commit is contained in:
@@ -131,6 +131,21 @@ struct OskWindow : public Window {
|
||||
}
|
||||
|
||||
switch (widget) {
|
||||
case OSK_WIDGET_TEXT:
|
||||
/* Find the edit box of the parent window and give focus to that */
|
||||
for (uint i = 0; i < this->parent->widget_count; i++) {
|
||||
Widget &wi = this->parent->widget[i];
|
||||
if (wi.type == WWT_EDITBOX) {
|
||||
this->parent->focused_widget = &wi;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Give focus to parent window */
|
||||
SetFocusedWindow(this->parent);
|
||||
|
||||
break;
|
||||
|
||||
case OSK_WIDGET_BACKSPACE:
|
||||
if (DeleteTextBufferChar(&this->qs->text, WKC_BACKSPACE)) this->InvalidateParent();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user