Quick Fix to Apply shapeky to basis

Was causing addon not to load, just a quick fix.
This commit is contained in:
Yusarina
2024-09-25 23:42:55 +01:00
parent adb549a4d4
commit fcbcd0a4fb
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ def register():
#finally register properties that may use some classes.
core.register.register_properties()
from functions.mesh_tools import AvatarToolkit_OT_ApplyShapeKey
from .functions.mesh_tools import AvatarToolkit_OT_ApplyShapeKey
bpy.types.MESH_MT_shape_key_context_menu.append((lambda self, context: self.layout.separator()))
bpy.types.MESH_MT_shape_key_context_menu.append((lambda self, context: self.layout.operator(AvatarToolkit_OT_ApplyShapeKey.bl_idname, icon="KEY_HLT")))