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:
authorbassam kurdali <bassam@urchn.org>2015-02-12 03:30:36 +0300
committerbassam kurdali <bassam@urchn.org>2015-02-12 03:30:36 +0300
commitf8664818ca3338733007e7b0dd2ce37cfaff8e0c (patch)
tree16ce46a1a40928eae374dde43d086d86d7a86e56 /space_view3d_copy_attributes.py
parentc2c407ad6264b5bf5dc2ac4e795b3e5c632a49b8 (diff)
'SKIP_SAVE' on operator properties to prevent errors on second run, bug reporterd by ZanQdo on irc
Diffstat (limited to 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index a80fd700..5fde0546 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