瀏覽代碼

Merge pull request #84797 from akien-mga/silence-warning-about-skipping-dirs-with-godot-project

Remove EditorFileDialog warning when skipping project directories
Rémi Verschelde 1 年之前
父節點
當前提交
4123f1371f
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      editor/editor_file_system.cpp

+ 3 - 1
editor/editor_file_system.cpp

@@ -2369,7 +2369,9 @@ bool EditorFileSystem::_should_skip_directory(const String &p_path) {
 
 	if (FileAccess::exists(p_path.path_join("project.godot"))) {
 		// Skip if another project inside this.
-		WARN_PRINT_ONCE(vformat("Detected another project.godot at %s. The folder will be ignored.", p_path));
+		if (EditorFileSystem::get_singleton()->first_scan) {
+			WARN_PRINT_ONCE(vformat("Detected another project.godot at %s. The folder will be ignored.", p_path));
+		}
 		return true;
 	}