From 23c4854f45d7cafa1cfadf13556b9277d4666bd1 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 27 Jun 2021 23:48:46 -0500 Subject: UI: Cleanup: Phrasing of tooltips in line art modifier Start the tooltip with a verb instead of a gerund, other small changes for consistency and readability. --- source/blender/makesrna/intern/rna_gpencil_modifier.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c index 34ec4fbec92..6fd897a3d66 100644 --- a/source/blender/makesrna/intern/rna_gpencil_modifier.c +++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c @@ -2841,7 +2841,7 @@ static void rna_def_modifier_gpencillineart(BlenderRNA *brna) prop = RNA_def_property(srna, "use_face_mark_boundaries", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "calculation_flags", LRT_FILTER_FACE_MARK_BOUNDARIES); RNA_def_property_ui_text( - prop, "Boundaries", "Filtering feature lines on face mark boundaries as well"); + prop, "Boundaries", "Filter feature lines based on face mark boundaries"); RNA_def_property_update(prop, 0, "rna_GpencilModifier_update"); prop = RNA_def_property(srna, "chaining_image_threshold", PROP_FLOAT, PROP_DISTANCE); @@ -2869,8 +2869,8 @@ static void rna_def_modifier_gpencillineart(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "calculation_flags", LRT_ALLOW_OVERLAP_EDGE_TYPES); RNA_def_property_ui_text(prop, "Overlapping Edge Types", - "Allow an edge to have multiple overlapping types. This will create an " - "individual stroke for each overlapping type"); + "Allow an edge to have multiple overlapping types. This will create a " + "separate stroke for each overlapping type"); RNA_def_property_update(prop, 0, "rna_GpencilModifier_update"); prop = RNA_def_property(srna, "source_type", PROP_ENUM, PROP_NONE); -- cgit v1.2.3