[Bf-blender-cvs] [3f934b0] master: Tweaks for a tooltip I missed during earlier review for D1886

Joshua Leung noreply at git.blender.org
Sun May 8 16:53:29 CEST 2016


Commit: 3f934b06a6d917de74987c48d17248e4501bae94
Author: Joshua Leung
Date:   Mon May 9 02:00:23 2016 +1200
Branches: master
https://developer.blender.org/rB3f934b06a6d917de74987c48d17248e4501bae94

Tweaks for a tooltip I missed during earlier review for D1886

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

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

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

diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 0aebca8..82d98d4 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -814,7 +814,9 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "pen_smooth_steps", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "draw_smoothlvl");
 	RNA_def_property_range(prop, 1, 3);
-	RNA_def_property_ui_text(prop, "Iterations", "Number of times to smooth newly created strokes [+ reason/effect of using higher values of this property]");
+	RNA_def_property_ui_text(prop, "Iterations",
+	                         "Number of times to smooth newly created strokes."
+	                         "Smoothing strength is halved on each successive round of smoothing applied.");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
 
 	/* Subdivision level for new strokes */




More information about the Bf-blender-cvs mailing list