소스 검색

Fixed log rebuilding crashing when there's no messages

Christian Kaiser 1 년 전
부모
커밋
6c62392fb0
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      editor/editor_log.cpp

+ 4 - 0
editor/editor_log.cpp

@@ -273,6 +273,10 @@ void EditorLog::_undo_redo_cbk(void *p_self, const String &p_name) {
 }
 
 void EditorLog::_rebuild_log() {
+	if (messages.is_empty()) {
+		return;
+	}
+
 	log->clear();
 
 	int line_count = 0;