diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py index a80fd70051a37cf5e7caa05d28d319f499252f32..5fde0546e0ed873cb895636dab02f7cfff776814 100644 --- a/space_view3d_copy_attributes.py +++ b/space_view3d_copy_attributes.py @@ -231,7 +231,7 @@ class CopySelectedPoseConstraints(bpy.types.Operator): """Copy Chosen constraints from active to selected""" bl_idname = "pose.copy_selected_constraints" bl_label = "Copy Selected Constraints" - selection = bpy.props.BoolVectorProperty(size=32) + selection = bpy.props.BoolVectorProperty(size=32, options={'SKIP_SAVE'}) poll = pose_poll_func invoke = pose_invoke_func @@ -530,7 +530,7 @@ class CopySelectedObjectConstraints(bpy.types.Operator): """Copy Chosen constraints from active to selected""" bl_idname = "object.copy_selected_constraints" bl_label = "Copy Selected Constraints" - selection = bpy.props.BoolVectorProperty(size=32) + selection = bpy.props.BoolVectorProperty(size=32, options={'SKIP_SAVE'}) poll = object_poll_func @@ -560,7 +560,7 @@ class CopySelectedObjectModifiers(bpy.types.Operator): """Copy Chosen modifiers from active to selected""" bl_idname = "object.copy_selected_modifiers" bl_label = "Copy Selected Modifiers" - selection = bpy.props.BoolVectorProperty(size=32) + selection = bpy.props.BoolVectorProperty(size=32, options={'SKIP_SAVE'}) poll = object_poll_func