mirror of
https://github.com/godotengine/godot.git
synced 2025-03-07 23:32:58 +08:00
Confirm code completion with numpad key ENTER
This commit is contained in:
parent
6d5d23fa8d
commit
e9f9e00bd9
@ -1768,7 +1768,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (k.scancode==KEY_RETURN || k.scancode==KEY_TAB) {
|
||||
if (k.scancode==KEY_ENTER || k.scancode==KEY_RETURN || k.scancode==KEY_TAB) {
|
||||
|
||||
_confirm_completion();
|
||||
accept_event();
|
||||
|
Loading…
Reference in New Issue
Block a user