Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-10-02 17:13:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-02 17:13:26 +0400
commit78d6288be33a45f5a4227941c238f5de92da24fb (patch)
tree468c9b24d5b48fdd75978099d537d712ea219ac9
parente795b8410b4964192791834faa0f94d0a017403b (diff)
correct spelling error in operator property
-rw-r--r--release/scripts/startup/bl_operators/anim.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py
index 98bad276109..c5fc3c50f3f 100644
--- a/release/scripts/startup/bl_operators/anim.py
+++ b/release/scripts/startup/bl_operators/anim.py
@@ -189,7 +189,7 @@ class BakeAction(Operator):
name="Only Selected",
default=True,
)
- clear_consraints = BoolProperty(
+ clear_constraints = BoolProperty(
name="Clear Constraints",
default=False,
)
@@ -212,7 +212,7 @@ class BakeAction(Operator):
self.only_selected,
'POSE' in self.bake_types,
'OBJECT' in self.bake_types,
- self.clear_consraints,
+ self.clear_constraints,
True,
)