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:
authormeta-androcto <meta.androcto1@gmail.com>2019-07-24 14:30:33 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-07-24 14:31:07 +0300
commit4d0e15ae1d5d54d9b1af826b5c8a218010471424 (patch)
tree206a6c776e31ee6cda365d7a655b337fe6556056 /magic_uv
parent5fdd75d68328cb3257a9792c6deb84e49b606375 (diff)
magic_uv: fix reg error: Fails to remove menus T67572
Diffstat (limited to 'magic_uv')
-rw-r--r--magic_uv/preferences.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/magic_uv/preferences.py b/magic_uv/preferences.py
index ec433e8e..ded1626c 100644
--- a/magic_uv/preferences.py
+++ b/magic_uv/preferences.py
@@ -160,7 +160,7 @@ def add_builtin_menu():
def remove_builtin_menu():
bpy.types.IMAGE_MT_uvs.remove(image_uvs_menu_fn)
- bpy.types.VIEW3D_MT_object.append(view3d_object_menu_fn)
+ bpy.types.VIEW3D_MT_object.remove(view3d_object_menu_fn)
bpy.types.VIEW3D_MT_uv_map.remove(view3d_uvmap_menu_fn)