From ea43ae4194e293599997f1d0d47430b462b4fd7f Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Tue, 29 Jun 2021 20:02:01 +0200 Subject: Fix crash on link/append for asset data-blocks in Thumbnails mode Same fix as 03a83b4eb5bc, but for the Thumbnails display mode. --- source/blender/editors/space_file/file_draw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_file') 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)) { -- cgit v1.2.3