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:
Diffstat (limited to 'uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py')
-rw-r--r--uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py b/uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py
index f9e2bec0..a9203d87 100644
--- a/uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py
+++ b/uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py
@@ -20,15 +20,20 @@
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
-__version__ = "5.1"
-__date__ = "24 Feb 2018"
+__version__ = "5.2"
+__date__ = "17 Nov 2018"
import bpy
from ..op import copy_paste_uv_object
-class OBJECT_PT_MUV_CPUVObj(bpy.types.Panel):
+__all__ = [
+ 'PanelCopyPasteUVObjectMode',
+]
+
+
+class PanelCopyPasteUVObjectMode(bpy.types.Panel):
"""
Panel class: Copy/Paste UV on Property Panel on View3D
"""
@@ -49,8 +54,9 @@ class OBJECT_PT_MUV_CPUVObj(bpy.types.Panel):
layout = self.layout
row = layout.row(align=True)
- row.menu(copy_paste_uv_object.MUV_CPUVObjCopyUVMenu.bl_idname,
+ row.menu(copy_paste_uv_object.MenuCopyUV.bl_idname,
text="Copy")
- row.menu(copy_paste_uv_object.MUV_CPUVObjPasteUVMenu.bl_idname,
+ row.menu(copy_paste_uv_object.MenuPasteUV.bl_idname,
text="Paste")
- layout.prop(sc, "muv_cpuv_copy_seams", text="Copy Seams")
+ layout.prop(sc, "muv_copy_paste_uv_object_copy_seams",
+ text="Seams")