diff --git a/animation_animall.py b/animation_animall.py
index 1bd863f5d0a8852834e74d3a4d6052231a9db36e..20e3c62f96771679034cea09935667cc58f438da 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -244,7 +244,7 @@ class ANIM_OT_insert_keyframe_animall(bpy.types.Operator):
                         
             if context.window_manager.key_points:
                 for Point in Data.points:
-                    Point.keyframe_insert('co')
+                    Point.keyframe_insert('co_deform')
             
             if Mode:
                 bpy.ops.object.editmode_toggle()
@@ -381,7 +381,7 @@ class ANIM_OT_delete_keyframe_animall(bpy.types.Operator):
                         
             if context.window_manager.key_points:
                 for Point in Data.points:
-                    Point.keyframe_delete('co')
+                    Point.keyframe_delete('co_deform')
             
             if Mode:
                 bpy.ops.object.editmode_toggle()