浏览代码

Merge pull request #5127 from bojidar-bg/asset-library-update-onshow

Update asset library assets only when opening the respective tab
Juan Linietsky 9 年之前
父节点
当前提交
fc54830f1a
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      tools/editor/asset_library_editor_plugin.cpp

+ 5 - 1
tools/editor/asset_library_editor_plugin.cpp

@@ -541,8 +541,12 @@ void EditorAssetLibrary::_notification(int p_what) {
 
 		error_hb->add_child(tf);
 		error_label->raise();
+	}
 
-		_repository_changed(0);
+	if (p_what==NOTIFICATION_VISIBILITY_CHANGED) {
+		if(!is_hidden()) {
+			_repository_changed(0); // Update when shown for the first time
+		}
 	}
 
 	if (p_what==NOTIFICATION_PROCESS) {