1
1

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

Same fix as 03a83b4eb5, but for the Thumbnails display mode.
This commit is contained in:
2021-06-29 20:02:01 +02:00
parent 516a060bb3
commit ea43ae4194

View File

@@ -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)) {