1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Fix LineEdit not capturing text input events

This commit is contained in:
Ignacio Etcheverry
2016-01-14 16:26:22 +01:00
parent e2be837520
commit ccbf8b42f4

View File

@@ -330,6 +330,8 @@ void LineEdit::_input_event(InputEvent p_event) {
append_at_cursor(ucodestr);
emit_signal("text_changed",text);
_change_notify("text");
accept_event();
}
} else {