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

Merge pull request #11661 from mhilbrunner/issue-11616-always-validate

Editor: Run validation on every text change, not only inserts
This commit is contained in:
Poommetee Ketson
2017-10-02 23:48:02 +07:00
committed by GitHub

View File

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