mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-02 20:34:41 +00:00
(svn r16468) -Codechange: Use GetWidgetOfType() for finding an edit box.
This commit is contained in:
parent
101a6b3320
commit
e03376c239
@ -147,20 +147,16 @@ struct OskWindow : public Window {
|
||||
}
|
||||
|
||||
switch (widget) {
|
||||
case OSK_WIDGET_TEXT:
|
||||
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;
|
||||
}
|
||||
}
|
||||
const Widget *wi = this->parent->GetWidgetOfType(WWT_EDITBOX);
|
||||
if (wi != NULL) this->parent->focused_widget = wi;
|
||||
|
||||
/* Give focus to parent window */
|
||||
SetFocusedWindow(this->parent);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case OSK_WIDGET_BACKSPACE:
|
||||
if (DeleteTextBufferChar(&this->qs->text, WKC_BACKSPACE)) this->InvalidateParent();
|
||||
|
Loading…
Reference in New Issue
Block a user