mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	Fix dependency menu not showing up if scene failed to load.
This commit is contained in:
		
							parent
							
								
									6916349697
								
							
						
					
					
						commit
						c0e872c05b
					
				
					 1 changed files with 11 additions and 10 deletions
				
			
		|  | @ -3732,16 +3732,6 @@ Error EditorNode::load_scene(const String &p_scene, bool p_ignore_broken_deps, b | |||
| 
 | ||||
| 	Error err; | ||||
| 	Ref<PackedScene> sdata = ResourceLoader::load(lpath, "", ResourceFormatLoader::CACHE_MODE_REPLACE, &err); | ||||
| 	if (!sdata.is_valid()) { | ||||
| 		_dialog_display_load_error(lpath, err); | ||||
| 		opening_prev = false; | ||||
| 
 | ||||
| 		if (prev != -1) { | ||||
| 			_set_current_scene(prev); | ||||
| 			editor_data.remove_scene(idx); | ||||
| 		} | ||||
| 		return ERR_FILE_NOT_FOUND; | ||||
| 	} | ||||
| 
 | ||||
| 	if (!p_ignore_broken_deps && dependency_errors.has(lpath)) { | ||||
| 		current_menu_option = -1; | ||||
|  | @ -3759,6 +3749,17 @@ Error EditorNode::load_scene(const String &p_scene, bool p_ignore_broken_deps, b | |||
| 		return ERR_FILE_MISSING_DEPENDENCIES; | ||||
| 	} | ||||
| 
 | ||||
| 	if (!sdata.is_valid()) { | ||||
| 		_dialog_display_load_error(lpath, err); | ||||
| 		opening_prev = false; | ||||
| 
 | ||||
| 		if (prev != -1) { | ||||
| 			_set_current_scene(prev); | ||||
| 			editor_data.remove_scene(idx); | ||||
| 		} | ||||
| 		return ERR_FILE_NOT_FOUND; | ||||
| 	} | ||||
| 
 | ||||
| 	dependency_errors.erase(lpath); // At least not self path.
 | ||||
| 
 | ||||
| 	for (KeyValue<String, HashSet<String>> &E : dependency_errors) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Saracen
						Saracen