diff --git a/animation_add_corrective_shape_key.py b/animation_add_corrective_shape_key.py index 94d6690192d1220e6d74c12d62d588d5316d934b..66ee8b52da6ce0941e19206eb0748207a4f1e77c 100644 --- a/animation_add_corrective_shape_key.py +++ b/animation_add_corrective_shape_key.py @@ -480,13 +480,13 @@ class add_corrective_pose_shape_fast(bpy.types.Operator): def vgroups_draw(self, context): layout = self.layout + layout.row().operator("object.object_duplicate_flatten_modifiers", text='Create duplicate for editing' ) layout.row().operator("object.add_corrective_pose_shape_fast", text='Add as corrective pose-shape (fast, armatures only)', icon='COPY_ID') # icon is not ideal layout.row().operator("object.add_corrective_pose_shape", text='Add as corrective pose-shape (slow, all modifiers)', icon='COPY_ID') # icon is not ideal def modifiers_draw(self, context): layout = self.layout - layout.operator("object.object_duplicate_flatten_modifiers" ) def register():