Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-01-08 08:58:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-08 08:58:58 +0300
commita7b4f98e731f66335e74d93ca2b95e5ba73ca9ca (patch)
tree35017aa7da250b7ed099b712da2238a244a368ea /source/blender/blenkernel/intern/library_query.c
parent87607254d6d3f9ca5ebbc696a4066bf0c8fbbed4 (diff)
Fix T53713: User remap failed w/ texface images
Diffstat (limited to 'source/blender/blenkernel/intern/library_query.c')
-rw-r--r--source/blender/blenkernel/intern/library_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/library_query.c b/source/blender/blenkernel/intern/library_query.c
index f6101498aca..0dda3d3c7d6 100644
--- a/source/blender/blenkernel/intern/library_query.c
+++ b/source/blender/blenkernel/intern/library_query.c
@@ -1069,7 +1069,7 @@ bool BKE_library_id_can_use_idtype(ID *id_owner, const short id_type_used)
return true;
#endif
case ID_ME:
- return ELEM(id_type_used, ID_ME, ID_KE, ID_MA);
+ return ELEM(id_type_used, ID_ME, ID_KE, ID_MA, ID_IM);
case ID_CU:
return ELEM(id_type_used, ID_OB, ID_KE, ID_MA, ID_VF);
case ID_MB: