Merge pull request #72378 from maximkulkin/line-edit-consume-events

Fix LineEdit not consuming events
This commit is contained in:
Rémi Verschelde 2023-02-10 15:08:28 +01:00
commit 008cafc103
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -274,6 +274,7 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
}
}
grab_focus();
accept_event();
return;
}
@ -383,6 +384,7 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
}
queue_redraw();
return;
}
Ref<InputEventMouseMotion> m = p_event;
@ -407,6 +409,8 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
drag_caret_force_displayed = true;
set_caret_at_pixel_pos(m->get_position().x);
}
return;
}
Ref<InputEventKey> k = p_event;
@ -460,6 +464,9 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
menu->reset_size();
menu->popup();
menu->grab_focus();
accept_event();
return;
}
}
@ -469,6 +476,8 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
if (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_VIRTUAL_KEYBOARD) && virtual_keyboard_enabled) {
DisplayServer::get_singleton()->virtual_keyboard_hide();
}
accept_event();
return;
}
if (is_shortcut_keys_enabled()) {
@ -608,6 +617,7 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
_text_changed();
}
accept_event();
return;
}
}
}