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

Editor: Run validation on every text change, not only inserts

This commit is contained in:
mhilbrunner
2017-09-28 18:30:20 +02:00
parent 4f39ce32b9
commit cfd75f7a4e

View File

@@ -1025,8 +1025,9 @@ void CodeTextEditor::_text_changed() {
if (text_editor->is_insert_text_operation()) {
code_complete_timer->start();
idle->start();
}
idle->start();
}
void CodeTextEditor::_code_complete_timer_timeout() {