1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Cancels the code complete timer when the caret moves to another line

Fixes and closes #68961
This commit is contained in:
Alfred Reinold Baudisch
2022-12-06 10:23:11 +01:00
parent f3e6750a7e
commit 02f7e03a66
2 changed files with 6 additions and 0 deletions

View File

@@ -158,6 +158,7 @@ class CodeTextEditor : public VBoxContainer {
Label *info = nullptr;
Timer *idle = nullptr;
Timer *code_complete_timer = nullptr;
int code_complete_timer_line = 0;
Timer *font_resize_timer = nullptr;
int font_resize_val;