[Bf-blender-cvs] [b3072b5] GPencil_Editing_Stage3: Fix: Fixed incorrect tooltip

Joshua Leung noreply at git.blender.org
Fri Dec 11 07:34:07 CET 2015


Commit: b3072b5617989a9bb685a52baefa07da652b2ac3
Author: Joshua Leung
Date:   Fri Dec 11 19:28:05 2015 +1300
Branches: GPencil_Editing_Stage3
https://developer.blender.org/rBb3072b5617989a9bb685a52baefa07da652b2ac3

Fix: Fixed incorrect tooltip

This tooltip was missed when was copying over the RNA stuff from my
earlier Pose Sculpting work (that much of these tools were based on)

===================================================================

M	source/blender/makesrna/intern/rna_sculpt_paint.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index c997d417..94161d9 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -1011,8 +1011,7 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
 	
 	prop = RNA_def_property(srna, "use_select_mask", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_BRUSHEDIT_FLAG_SELECT_MASK);
-	RNA_def_property_ui_text(prop, "Selection Mask", 
-	                         "Only affect selected bones, preventing accidentally destroying poses");
+	RNA_def_property_ui_text(prop, "Selection Mask", "Only sculpt selected stroke points");
 	RNA_def_property_ui_icon(prop, ICON_VERTEXSEL, 0); // FIXME: this needs a custom icon




More information about the Bf-blender-cvs mailing list