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/uvedit_copy_paste_uv.py')
-rw-r--r--uv_magic_uv/ui/uvedit_copy_paste_uv.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/uv_magic_uv/ui/uvedit_copy_paste_uv.py b/uv_magic_uv/ui/uvedit_copy_paste_uv.py
index d87dbef3..271277a0 100644
--- a/uv_magic_uv/ui/uvedit_copy_paste_uv.py
+++ b/uv_magic_uv/ui/uvedit_copy_paste_uv.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_uvedit
-class IMAGE_PT_MUV_CPUV(bpy.types.Panel):
+__all__ = [
+ 'PanelCopyPasteUV',
+]
+
+
+class PanelCopyPasteUV(bpy.types.Panel):
"""
Panel class: Copy/Paste UV on Property Panel on UV/ImageEditor
"""
@@ -48,7 +53,7 @@ class IMAGE_PT_MUV_CPUV(bpy.types.Panel):
layout = self.layout
row = layout.row(align=True)
- row.operator(copy_paste_uv_uvedit.MUV_CPUVIECopyUV.bl_idname,
+ row.operator(copy_paste_uv_uvedit.OperatorCopyUV.bl_idname,
text="Copy")
- row.operator(copy_paste_uv_uvedit.MUV_CPUVIEPasteUV.bl_idname,
+ row.operator(copy_paste_uv_uvedit.OperatorPasteUV.bl_idname,
text="Paste")