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:
authorCampbell Barton <ideasman42@gmail.com>2016-01-14 13:56:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-14 21:21:42 +0300
commit76197a2b96e2dba436d6466ef04757b1063d591e (patch)
treeb9518311b688559b63e294f9ef12e04ad8705186
parent2fb3fa1bf11dda4648ad3971fb7f9fe5f6c3c0c8 (diff)
Improve multi-paint tip
-rw-r--r--source/blender/makesrna/intern/rna_scene.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index f7f6204113f..137661a744b 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2088,8 +2088,8 @@ static void rna_def_tool_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_multipaint", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "multipaint", 1);
RNA_def_property_ui_text(prop, "WPaint Multi-Paint",
- "Paint across all selected bones while "
- "weight painting");
+ "Paint across the weights of all selected bones, "
+ "maintaining their relative influence");
RNA_def_property_update(prop, 0, "rna_Scene_update_active_object_data");
prop = RNA_def_property(srna, "vertex_group_user", PROP_ENUM, PROP_NONE);