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/op/move_uv.py')
-rw-r--r--uv_magic_uv/op/move_uv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uv_magic_uv/op/move_uv.py b/uv_magic_uv/op/move_uv.py
index 7f94edfb..1a8d6dd1 100644
--- a/uv_magic_uv/op/move_uv.py
+++ b/uv_magic_uv/op/move_uv.py
@@ -74,7 +74,7 @@ class _Properties:
@classmethod
def init_props(cls, scene):
- scene.muv_move_uv_enabled: BoolProperty(
+ scene.muv_move_uv_enabled = BoolProperty(
name="Move UV Enabled",
description="Move UV is enabled",
default=False
@@ -91,7 +91,7 @@ class MUV_OT_MoveUV(bpy.types.Operator):
Operator class: Move UV
"""
- bl_idname = "uv.muv_move_uv_operator"
+ bl_idname = "uv.muv_ot_move_uv"
bl_label = "Move UV"
bl_options = {'REGISTER', 'UNDO'}