Commit: 4eb4c90cf6fbce9f94d130f15f417b37b17d80c7 Author: Antonio Vazquez Date: Tue Mar 29 22:26:36 2022 +0200 Branches: master https://developer.blender.org/rB4eb4c90cf6fbce9f94d130f15f417b37b17d80c7
GPencil: Remove UI prefix `Use` in Dot-Dash modifier The "Use" word must not be used in UI. =================================================================== 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 f6e44ae7cd8..af75979a316 100644 --- a/source/blender/makesrna/intern/rna_gpencil_modifier.c +++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c @@ -3785,7 +3785,7 @@ static void rna_def_modifier_gpencildash(BlenderRNA *brna) prop = RNA_def_property(srna, "use_cyclic", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_DASH_USE_CYCLIC); - RNA_def_property_ui_text(prop, "Use Cyclic", "Enable cyclic on individual stroke dashes"); + RNA_def_property_ui_text(prop, "Cyclic", "Enable cyclic on individual stroke dashes"); RNA_def_property_update(prop, 0, "rna_GpencilModifier_update"); srna = RNA_def_struct(brna, "DashGpencilModifierData", "GpencilModifier"); _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
