Browse Source

Improve image loading performance in the asset library

This closes #31614.
Hugo Locurcio 6 years ago
parent
commit
2ed7bf58ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/plugins/asset_library_editor_plugin.cpp

+ 1 - 1
editor/plugins/asset_library_editor_plugin.cpp

@@ -827,7 +827,7 @@ void EditorAssetLibrary::_image_request_completed(int p_status, int p_code, cons
 
 void EditorAssetLibrary::_update_image_queue() {
 
-	int max_images = 2;
+	const int max_images = 6;
 	int current_images = 0;
 
 	List<int> to_delete;