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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-05-03 17:00:34 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-03 17:00:34 +0300
commita5d0597b927d90c3621f8a40b0703cc158800fb8 (patch)
treea86a9abca1f0df465040d7c241f6bff8e18a3e00 /source/blender/makesrna/intern/rna_constraint.c
parent53c43259ad0a576912b350269cfbfcc72302a105 (diff)
Fix tooltip for constraints' subtarget.
Thanks @aligorith for the head-up.
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index a6daea4c3f3..b602c90c82c 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -535,7 +535,7 @@ static void rna_def_constraint_target_common(StructRNA *srna)
prop = RNA_def_property(srna, "subtarget", PROP_STRING, PROP_NONE);
RNA_def_property_string_sdna(prop, NULL, "subtarget");
- RNA_def_property_ui_text(prop, "Sub-Target", "Only Armature bones are supported currently");
+ RNA_def_property_ui_text(prop, "Sub-Target", "Armature bone, mesh or lattice vertex group, ...");
RNA_def_property_update(prop, NC_OBJECT | ND_CONSTRAINT, "rna_Constraint_dependency_update");
}