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 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index ce30d55a..4c1babb1 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -32,11 +32,6 @@ bl_info = {
'func=detail&aid=22588',
'category': '3D View'}
-__bpydoc__ = """
-Copy Menu
-
-
-"""
import bpy
import mathutils
from mathutils import *
@@ -749,7 +744,7 @@ def register():
kmi = km.items.new('wm.call_menu', 'C', 'PRESS', ctrl=True)
kmi.properties.name = 'VIEW3D_MT_posecopypopup'
for menu in _layer_menus:
- bpy.types.register(menu)
+ bpy.utils.register_class(menu)
bpy.types.DATA_PT_texface.append(_add_tface_buttons)
km = kc.keymaps.get("Mesh")
if km is None: