(svn r23132) -Fix: when any keys on te on-screen keyboard were pressed the text cursor disappeared

This commit is contained in:
yexo 2011-11-08 15:10:39 +00:00
parent dc1fd2dbe6
commit 80e5d13f25
1 changed files with 6 additions and 6 deletions

View File

@ -157,16 +157,13 @@ struct OskWindow : public Window {
this->GetWidget<NWidgetCore>(OSK_WIDGET_SHIFT)->colour = HasBit(_keystate, KEYS_SHIFT) ? COLOUR_WHITE : COLOUR_GREY;
this->SetDirty();
}
/* Return focus to the parent widget and window. */
this->parent->SetFocusedWidget(this->text_btn);
SetFocusedWindow(this->parent);
return;
}
switch (widget) {
case OSK_WIDGET_TEXT:
/* Return focus to the parent widget and window. */
this->parent->SetFocusedWidget(this->text_btn);
SetFocusedWindow(this->parent);
break;
case OSK_WIDGET_BACKSPACE:
if (DeleteTextBufferChar(&this->qs->text, WKC_BACKSPACE)) this->InvalidateParent();
break;
@ -229,6 +226,9 @@ struct OskWindow : public Window {
}
break;
}
/* Return focus to the parent widget and window. */
this->parent->SetFocusedWidget(this->text_btn);
SetFocusedWindow(this->parent);
}
void InvalidateParent()