[Bf-blender-cvs] [65d54f3023a] greasepencil-object: GPencil: Replace gradient tooltip

Antonioya noreply at git.blender.org
Wed Apr 10 14:22:46 CEST 2019


Commit: 65d54f3023a5ab3180f28eadc98e47fa89c5b183
Author: Antonioya
Date:   Wed Apr 10 14:22:39 2019 +0200
Branches: greasepencil-object
https://developer.blender.org/rB65d54f3023a5ab3180f28eadc98e47fa89c5b183

GPencil: Replace gradient tooltip

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

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

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

diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index d4ada04ca52..23ae314f885 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -1197,14 +1197,14 @@ static void rna_def_gpencil_options(BlenderRNA *brna)
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, NULL);
 
-	/* gradient control along y */
+	/* gradient control */
 	prop = RNA_def_property(srna, "gradient_factor", PROP_FLOAT, PROP_FACTOR);
 	RNA_def_property_float_sdna(prop, NULL, "gradient_f");
 	RNA_def_property_range(prop, 0.001f, 1.0f);
 	RNA_def_property_float_default(prop, 1.0f);
 	RNA_def_property_ui_text(
 		prop, "Border Opacity Factor",
-		"Amount of gradient along section of stroke (set to 1 for full solid)");
+		"Amount of gradient for Dot strokes (set to 1 for full solid)");
 	RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
 
 	/* gradient shape ratio */



More information about the Bf-blender-cvs mailing list