mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	
							parent
							
								
									cb0e357d0b
								
							
						
					
					
						commit
						aaedde4122
					
				
					 1 changed files with 11 additions and 5 deletions
				
			
		|  | @ -4907,13 +4907,19 @@ void EditorNode::dim_editor(bool p_dimming) { | ||||||
| 	static int dim_count = 0; | 	static int dim_count = 0; | ||||||
| 	bool dim_ui = EditorSettings::get_singleton()->get("interface/dim_editor_on_dialog_popup"); | 	bool dim_ui = EditorSettings::get_singleton()->get("interface/dim_editor_on_dialog_popup"); | ||||||
| 	if (p_dimming) { | 	if (p_dimming) { | ||||||
| 		if (dim_ui && dim_count == 0) | 		if (dim_ui) { | ||||||
|  | 			if (dim_count == 0) { | ||||||
| 				_start_dimming(true); | 				_start_dimming(true); | ||||||
|  | 			} | ||||||
| 			dim_count++; | 			dim_count++; | ||||||
|  | 		} | ||||||
| 	} else { | 	} else { | ||||||
| 		dim_count--; | 		if (dim_count == 1) { | ||||||
| 		if (dim_count < 1) |  | ||||||
| 			_start_dimming(false); | 			_start_dimming(false); | ||||||
|  | 			dim_count = 0; | ||||||
|  | 		} else if (dim_ui && dim_count > 0) { | ||||||
|  | 			dim_count--; | ||||||
|  | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Haas
						Andreas Haas