From ccbf8b42f4043735433603ef5bae26cd7a0d4bce Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Thu, 14 Jan 2016 16:26:22 +0100 Subject: [PATCH] Fix LineEdit not capturing text input events --- scene/gui/line_edit.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 49ea077a303..fdced3f62f1 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -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 {