Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-09-19 11:54:38 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-09-19 11:56:36 +0300
commitd989ae84a8cfead6da8ef90c80c281402e4f6f01 (patch)
treeef7f140f91dc1f908e6b109c0e61e0ad23eb92de /source/blender/makesrna/intern/rna_material.c
parent14b2a35c8bfd6d77f6357f929ddd82845436725f (diff)
GPencil: Change tooltip for Holdout option
Diffstat (limited to 'source/blender/makesrna/intern/rna_material.c')
-rw-r--r--source/blender/makesrna/intern/rna_material.c4
1 files changed, 2 insertions, 2 deletions
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);