We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66d5f19 commit 0241c3bCopy full SHA for 0241c3b
1 file changed
Source/GUI/GUITextPanel.cpp
@@ -141,10 +141,12 @@ void GUITextPanel::Draw(GUIScreen* Screen) {
141
}
142
143
void GUITextPanel::OnGainFocus() {
144
+ GUIPanel::OnGainFocus();
145
m_Manager->GetInputController()->StartTextInput();
146
147
148
void GUITextPanel::OnLoseFocus() {
149
+ GUIPanel::OnLoseFocus();
150
m_Manager->GetInputController()->StopTextInput();
151
152
0 commit comments