[Bf-blender-cvs] [26ffade5c19] blender-v2.79a-release: Fix T53713: User remap failed w/ texface images

Campbell Barton noreply at git.blender.org
Mon Jan 8 06:53:10 CET 2018


Commit: 26ffade5c193059d5df5b8e1dab9190d68c4a6e8
Author: Campbell Barton
Date:   Mon Jan 8 16:58:58 2018 +1100
Branches: blender-v2.79a-release
https://developer.blender.org/rB26ffade5c193059d5df5b8e1dab9190d68c4a6e8

Fix T53713: User remap failed w/ texface images

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

M	source/blender/blenkernel/intern/library_query.c

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

diff --git a/source/blender/blenkernel/intern/library_query.c b/source/blender/blenkernel/intern/library_query.c
index d1f0c87183d..6547163a1bc 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:



More information about the Bf-blender-cvs mailing list