[Bf-blender-cvs] [ea43ae4194e] master: Fix crash on link/append for asset data-blocks in Thumbnails mode

Julian Eisel noreply at git.blender.org
Tue Jun 29 20:09:15 CEST 2021


Commit: ea43ae4194e293599997f1d0d47430b462b4fd7f
Author: Julian Eisel
Date:   Tue Jun 29 20:02:01 2021 +0200
Branches: master
https://developer.blender.org/rBea43ae4194e293599997f1d0d47430b462b4fd7f

Fix crash on link/append for asset data-blocks in Thumbnails mode

Same fix as 03a83b4eb5bc, but for the Thumbnails display mode.

===================================================================

M	source/blender/editors/space_file/file_draw.c

===================================================================

diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index 6e409d2f5a4..46d37d21756 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -489,7 +489,8 @@ static void file_draw_preview(const SpaceFile *sfile,
       UI_but_drag_set_id(but, id);
     }
     /* path is no more static, cannot give it directly to but... */
-    else if (file->typeflag & FILE_TYPE_ASSET) {
+    else if (sfile->browse_mode == FILE_BROWSE_MODE_ASSETS &&
+             (file->typeflag & FILE_TYPE_ASSET) != 0) {
       char blend_path[FILE_MAX_LIBEXTRA];
 
       if (BLO_library_path_explode(path, blend_path, NULL, NULL)) {



More information about the Bf-blender-cvs mailing list