[Bf-blender-cvs] [f823b9e] master: Fix T46483: vertex/edge slide with correct UVs sometimes pinning UVs.

Brecht Van Lommel noreply at git.blender.org
Thu Oct 15 03:16:03 CEST 2015


Commit: f823b9ece88a090b6b5eb779bc729dd22052b645
Author: Brecht Van Lommel
Date:   Thu Oct 15 03:13:02 2015 +0200
Branches: master
https://developer.blender.org/rBf823b9ece88a090b6b5eb779bc729dd22052b645

Fix T46483: vertex/edge slide with correct UVs sometimes pinning UVs.

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

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

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

diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index 815c18b..f14feee 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -926,6 +926,7 @@ static void layerInterp_mloopuv(
 	}
 
 	/* delay writing to the destination incase dest is in sources */
+	((MLoopUV *)dest)->flag = ((MLoopUV *)sources)->flag;
 	copy_v2_v2(((MLoopUV *)dest)->uv, uv);
 }




More information about the Bf-blender-cvs mailing list