[Bf-blender-cvs] [579eeb547f5] greasepencil-object: GPencil: Replace title for Replace Thickness

Antonio Vazquez noreply at git.blender.org
Thu Mar 5 16:15:30 CET 2020


Commit: 579eeb547f5c42ef0bc77b193331d12e2e2a0601
Author: Antonio Vazquez
Date:   Thu Mar 5 16:14:39 2020 +0100
Branches: greasepencil-object
https://developer.blender.org/rB579eeb547f5c42ef0bc77b193331d12e2e2a0601

GPencil: Replace title for Replace Thickness

After talking with @pablovazquez, @mendio and @pepeland, the name Uniform Thickness defines better what this parameter does.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 73ef4ebdf15..79056ea09ac 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -871,7 +871,7 @@ static void rna_def_modifier_gpencilthick(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "normalize_thickness", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_THICK_NORMALIZE);
-  RNA_def_property_ui_text(prop, "Replace Thickness", "Replace stroke thickness");
+  RNA_def_property_ui_text(prop, "Uniform Thickness", "Replace the stroke thickness");
   RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
 
   prop = RNA_def_property(srna, "curve", PROP_POINTER, PROP_NONE);



More information about the Bf-blender-cvs mailing list