mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #6132 from neikeq/pr-issue-6123
Confirm code completion with numpad key ENTER
This commit is contained in:
commit
b9e8bddf19
@ -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…
x
Reference in New Issue
Block a user