GPencil: Change tooltip for Holdout option

This commit is contained in:
Antonio Vazquez
2020-09-19 10:54:38 +02:00
parent 14b2a35c8b
commit d989ae84a8

View File

@@ -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);