[Bf-blender-cvs] [d989ae84a8c] master: GPencil: Change tooltip for Holdout option

Antonio Vazquez noreply at git.blender.org
Sat Sep 19 10:56:41 CEST 2020


Commit: d989ae84a8cfead6da8ef90c80c281402e4f6f01
Author: Antonio Vazquez
Date:   Sat Sep 19 10:54:38 2020 +0200
Branches: master
https://developer.blender.org/rBd989ae84a8cfead6da8ef90c80c281402e4f6f01

GPencil: Change tooltip for Holdout option

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

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

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

diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index c358b61d24c..5e16f1187fb 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -567,13 +567,13 @@ static void rna_def_material_greasepencil(BlenderRNA *brna)
   prop = RNA_def_property(srna, "use_stroke_holdout", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_MATERIAL_IS_STROKE_HOLDOUT);
   RNA_def_property_ui_text(
-      prop, "Holdout", "Remove the color from underneath strokes using current stroke as mask");
+      prop, "Holdout", "Remove the color from underneath this stroke by using it as a mask");
   RNA_def_property_update(prop, NC_GPENCIL | ND_SHADING, "rna_MaterialGpencil_update");
 
   prop = RNA_def_property(srna, "use_fill_holdout", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_MATERIAL_IS_FILL_HOLDOUT);
   RNA_def_property_ui_text(
-      prop, "Holdout", "Remove the color from underneath strokes using current stroke as mask");
+      prop, "Holdout", "Remove the color from underneath this stroke by using it as a mask");
   RNA_def_property_update(prop, NC_GPENCIL | ND_SHADING, "rna_MaterialGpencil_update");
 
   prop = RNA_def_property(srna, "show_stroke", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list