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:01:43 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-03 17:01:43 +0300
commitb2b9efbe6d35566f67b95ab6273fe4dba728d807 (patch)
treeadd7c451a75d971a65818d111e26d5fcd10c4757
parent0b1c673e1462ed662bcad47894d41c89ce13e9db (diff)
parenta5d0597b927d90c3621f8a40b0703cc158800fb8 (diff)
Merge branch 'master' into blender2.8
-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 e190899fb6c..f964550e30d 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -532,7 +532,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");
}