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.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/uv_magic_uv/ui/uvedit_copy_paste_uv.py b/uv_magic_uv/ui/uvedit_copy_paste_uv.py
index 7b8a1c52..25a43e3f 100644
--- a/uv_magic_uv/ui/uvedit_copy_paste_uv.py
+++ b/uv_magic_uv/ui/uvedit_copy_paste_uv.py
@@ -25,7 +25,10 @@ __date__ = "17 Nov 2018"
import bpy
-from ..op import copy_paste_uv_uvedit
+from ..op.copy_paste_uv_uvedit import (
+ MUV_OT_CopyPasteUVUVEdit_CopyUV,
+ MUV_OT_CopyPasteUVUVEdit_PasteUV,
+)
from ..utils.bl_class_registry import BlClassRegistry
from ..utils import compatibility as compat
@@ -52,9 +55,5 @@ class MUV_PT_UVEdit_CopyPasteUV(bpy.types.Panel):
layout = self.layout
row = layout.row(align=True)
- row.operator(
- copy_paste_uv_uvedit.MUV_OT_CopyPasteUVUVEdit_CopyUV.bl_idname,
- text="Copy")
- row.operator(
- copy_paste_uv_uvedit.MUV_OT_CopyPasteUVUVEdit_PasteUV.bl_idname,
- text="Paste")
+ row.operator(MUV_OT_CopyPasteUVUVEdit_CopyUV.bl_idname, text="Copy")
+ row.operator(MUV_OT_CopyPasteUVUVEdit_PasteUV.bl_idname, text="Paste")