mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
auto-completion edge jump
arrow up/down jumps to end/start on edges (cherry picked from commit e36dd4282b2c4a5b2f2b00e57ee347c4fcd14e71)
This commit is contained in:
parent
b5a55810c5
commit
259b9664ef
@ -2141,9 +2141,12 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||
|
||||
if (completion_index > 0) {
|
||||
completion_index--;
|
||||
completion_current = completion_options[completion_index];
|
||||
update();
|
||||
} else {
|
||||
completion_index = completion_options.size() - 1;
|
||||
}
|
||||
completion_current = completion_options[completion_index];
|
||||
update();
|
||||
|
||||
accept_event();
|
||||
return;
|
||||
}
|
||||
@ -2152,9 +2155,12 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||
|
||||
if (completion_index < completion_options.size() - 1) {
|
||||
completion_index++;
|
||||
completion_current = completion_options[completion_index];
|
||||
update();
|
||||
} else {
|
||||
completion_index = 0;
|
||||
}
|
||||
completion_current = completion_options[completion_index];
|
||||
update();
|
||||
|
||||
accept_event();
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user