1
0
Fork 0

Merge pull request #97660 from HolonProduction/completion-cancelation-🌈

GUI: Only cancel completion with the `ui_cancel` action
This commit is contained in:
Rémi Verschelde 2024-12-14 18:25:13 +01:00
commit 36c6ce92db
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 0 additions and 4 deletions

View File

@ -572,10 +572,6 @@ void CodeEdit::gui_input(const Ref<InputEvent> &p_gui_input) {
} else { } else {
update_code_completion = (allow_unicode_handling && k->get_unicode() >= 32); update_code_completion = (allow_unicode_handling && k->get_unicode() >= 32);
} }
if (!update_code_completion) {
cancel_code_completion();
}
} }
/* MISC */ /* MISC */