[Bf-extensions-cvs] [6aa1c9ae] master: Magic UV: fix bug (failed to copy/paste UV seam among objects)

Nutti noreply at git.blender.org
Wed Aug 30 15:09:11 CEST 2017


Commit: 6aa1c9aeb6f412aced380cb78e912264defbd209
Author: Nutti
Date:   Wed Aug 30 22:06:41 2017 +0900
Branches: master
https://developer.blender.org/rBA6aa1c9aeb6f412aced380cb78e912264defbd209

Magic UV: fix bug (failed to copy/paste UV seam among objects)

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

M	uv_magic_uv/muv_cpuv_ops.py

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

diff --git a/uv_magic_uv/muv_cpuv_ops.py b/uv_magic_uv/muv_cpuv_ops.py
index 257d686e..c3e0e6a3 100644
--- a/uv_magic_uv/muv_cpuv_ops.py
+++ b/uv_magic_uv/muv_cpuv_ops.py
@@ -459,8 +459,8 @@ class MUV_CPUVObjPasteUV(bpy.types.Operator):
                         bm.faces[idx].loops, suvs_fr, spuvs_fr, ss_fr):
                     l[uv_layer].uv = suv
                     l[uv_layer].pin_uv = spuv
-                if self.copy_seams is True:
-                    l.edge.seam = ss
+                    if self.copy_seams is True:
+                        l.edge.seam = ss
 
             bmesh.update_edit_mesh(obj.data)
             if self.copy_seams is True:



More information about the Bf-extensions-cvs mailing list