소스 검색

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

mhilbrunner 8 년 전
부모
커밋
cfd75f7a4e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      editor/code_editor.cpp

+ 2 - 1
editor/code_editor.cpp

@@ -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() {