[Bf-blender-cvs] [a7b4f98e731] master: Fix T53713: User remap failed w/ texface images

Campbell Barton noreply at git.blender.org
Mon Jan 8 06:51:54 CET 2018


Commit: a7b4f98e731f66335e74d93ca2b95e5ba73ca9ca
Author: Campbell Barton
Date:   Mon Jan 8 16:58:58 2018 +1100
Branches: master
https://developer.blender.org/rBa7b4f98e731f66335e74d93ca2b95e5ba73ca9ca

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 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:



More information about the Bf-blender-cvs mailing list