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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-02-27 01:33:17 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-02-27 01:33:17 +0300
commit1a1f2912e65e99a38528e4cf18094a29412e17d5 (patch)
treee1c63e83096138dfa343bc1e6bc52de00259fc41 /source/blender/makesrna/intern
parent1d302df4f82e27d2d292bfab168f23a8f9d6b9cf (diff)
UI: Clarify Laplacian Deform
- Match UI Style - Clarify that the vertex group is different then other modifiers
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 9a4048e6aaa..cc0ebd8e6b2 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -5635,7 +5635,7 @@ static void rna_def_modifier_laplaciandeform(BlenderRNA *brna)
prop = RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE);
RNA_def_property_string_sdna(prop, NULL, "anchor_grp_name");
RNA_def_property_ui_text(
- prop, "Vertex Group for Anchors", "Name of Vertex Group which determines Anchors");
+ prop, "Anchor Weights", "Name of Vertex Group which determines Anchors");
RNA_def_property_string_funcs(
prop, NULL, NULL, "rna_LaplacianDeformModifier_anchor_grp_name_set");