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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornutti <nutti.metro@gmail.com>2020-08-10 10:07:26 +0300
committernutti <nutti.metro@gmail.com>2020-08-10 10:24:28 +0300
commit8db46434a4b25569372a7172f83733ec14dffb31 (patch)
treef981b15847246b0ffb054cc4d87083b2ec394fda /magic_uv/op/texture_lock.py
parent7084d19ef5886b740b65ba6a4234849859e0e5b8 (diff)
Magic UV: Release v6.3
Added features - Clip UV Updated features - World Scale UV * Add option "Area Calculation Method" * Add option "Only Selected" - UVW * Support multiple objects - Select UV * Support multiple objects - UV Inspection * Add Paint UV Island feature * Support multiple objects Other updates - Fix bugs - Optimization
Diffstat (limited to 'magic_uv/op/texture_lock.py')
-rw-r--r--magic_uv/op/texture_lock.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/magic_uv/op/texture_lock.py b/magic_uv/op/texture_lock.py
index 43d78549..ddcaf315 100644
--- a/magic_uv/op/texture_lock.py
+++ b/magic_uv/op/texture_lock.py
@@ -20,8 +20,8 @@
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
-__version__ = "6.2"
-__date__ = "31 Jul 2019"
+__version__ = "6.3"
+__date__ = "10 Aug 2020"
import math
from math import atan2, cos, sqrt, sin, fabs
@@ -435,7 +435,7 @@ class MUV_OT_TextureLock_Intr(bpy.types.Operator):
bm.faces.ensure_lookup_table()
prev = set(self.__intr_verts)
- now = set([v.index for v in bm.verts if v.select])
+ now = {v.index for v in bm.verts if v.select}
return prev != now