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:
authorSv. Lockal <lockalsash@gmail.com>2014-01-26 20:12:29 +0400
committerSv. Lockal <lockalsash@gmail.com>2014-01-26 20:12:29 +0400
commit646cc46400bbf80a168c541541bef1220bd446dd (patch)
treec19ff40f837df59571eff3ab24f9dc5a42ba03e9
parentafb9393ddad3c57e99a5df13a74969c192a023f5 (diff)
Fix typo in nla blend modes.
-rw-r--r--source/blender/makesrna/intern/rna_nla.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nla.c b/source/blender/makesrna/intern/rna_nla.c
index d905e6a014a..4a95bd4e51b 100644
--- a/source/blender/makesrna/intern/rna_nla.c
+++ b/source/blender/makesrna/intern/rna_nla.c
@@ -414,7 +414,7 @@ EnumPropertyItem nla_mode_blend_items[] = {
{NLASTRIP_MODE_ADD, "ADD", 0, "Add", "Weighted result of strip is added to the accumulated results"},
{NLASTRIP_MODE_SUBTRACT, "SUBTRACT", 0, "Subtract",
"Weighted result of strip is removed from the accumulated results"},
- {NLASTRIP_MODE_MULTIPLY, "MULITPLY", 0, "Multiply",
+ {NLASTRIP_MODE_MULTIPLY, "MULTIPLY", 0, "Multiply",
"Weighted result of strip is multiplied with the accumulated results"},
{0, NULL, 0, NULL, NULL}
};