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>2021-03-06 11:54:33 +0300
committernutti <nutti.metro@gmail.com>2021-03-06 11:54:33 +0300
commit117faa96af35685d72e5e01f9a386d163d874133 (patch)
treeb4378f8ca2e91c93ab035ab37b05e018f601ff54 /magic_uv/ui/IMAGE_MT_uvs.py
parentc8752443311b133f8783a6b9b2152eb7c92d06a7 (diff)
Magic UV: Release v6.5
Updated Features * Texture Projection * Add option "Scaling", "Rotation", "Translation" * Select UV * Add Zoom Selected UV feature * Add option "Same Polygon Threshold" * Add option "Selection Method" * Add option "Sync Mesh Selection" * UV Inspection * Add option "Same Polygon Threshold" * Add option "Display View3D" * Mirror UV * Add option "Origin" * UVW * Add option "Force Axis" Other Updates * Fix bugs
Diffstat (limited to 'magic_uv/ui/IMAGE_MT_uvs.py')
-rw-r--r--magic_uv/ui/IMAGE_MT_uvs.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/magic_uv/ui/IMAGE_MT_uvs.py b/magic_uv/ui/IMAGE_MT_uvs.py
index 3984c20f..79199cfd 100644
--- a/magic_uv/ui/IMAGE_MT_uvs.py
+++ b/magic_uv/ui/IMAGE_MT_uvs.py
@@ -20,8 +20,8 @@
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
-__version__ = "6.4"
-__date__ = "23 Oct 2020"
+__version__ = "6.5"
+__date__ = "6 Mar 2021"
import bpy
@@ -123,13 +123,16 @@ class MUV_MT_SelectUV(bpy.types.Menu):
bl_label = "Select UV"
bl_description = "Select UV"
- def draw(self, _):
+ def draw(self, context):
+ sc = context.scene
layout = self.layout
- layout.operator(MUV_OT_SelectUV_SelectOverlapped.bl_idname,
- text="Overlapped")
- layout.operator(MUV_OT_SelectUV_SelectFlipped.bl_idname,
- text="Flipped")
+ ops = layout.operator(MUV_OT_SelectUV_SelectOverlapped.bl_idname,
+ text="Overlapped")
+ MUV_OT_SelectUV_SelectOverlapped.setup_argument(ops, sc)
+ ops = layout.operator(MUV_OT_SelectUV_SelectFlipped.bl_idname,
+ text="Flipped")
+ MUV_OT_SelectUV_SelectFlipped.setup_argument(ops, sc)
@BlClassRegistry()