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:
authorJoshua Leung <aligorith@gmail.com>2016-05-13 18:06:24 +0300
committerJoshua Leung <aligorith@gmail.com>2016-05-17 17:28:49 +0300
commite62aab8981868a49dc9a7a4468bc4754ff2eaaa5 (patch)
treea7dffff45f1d58ecd31f65180ac37f938e7dc44c
parent0d07ee84fb42efe2f09d02f080b24e8234691156 (diff)
Bendy Bones: Fix tooltip for "Inherit End Roll" to be a bit more descriptive
-rw-r--r--source/blender/makesrna/intern/rna_armature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c
index 183f4f58bfe..4541c351ad4 100644
--- a/source/blender/makesrna/intern/rna_armature.c
+++ b/source/blender/makesrna/intern/rna_armature.c
@@ -543,7 +543,7 @@ static void rna_def_bone_common(StructRNA *srna, int editbone)
RNA_def_property_update(prop, 0, "rna_Armature_update_data");
prop = RNA_def_property(srna, "use_endroll_as_inroll", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_ui_text(prop, "Inherit endRoll", "Inherit endRoll");
+ RNA_def_property_ui_text(prop, "Inherit End Roll", "Use endroll of parent as inroll of its children");
RNA_def_property_boolean_sdna(prop, NULL, "flag", BONE_ADD_PARENT_END_ROLL);
RNA_def_property_update(prop, 0, "rna_Armature_update_data");