From 0fbb83ef8575cfbfee17fccf3540fe7a1657a200 Mon Sep 17 00:00:00 2001 From: YimingWu Date: Mon, 8 Jul 2024 06:09:50 +0200 Subject: [PATCH] Fix #124296: Lower case name in Multistroke modifier Just a typo in Grease Pencil Multistroke modifier. Pull Request: https://projects.blender.org/blender/blender/pulls/124327 --- source/blender/makesrna/intern/rna_modifier.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_modifier.cc b/source/blender/makesrna/intern/rna_modifier.cc index bddedaa602b..c4b77e3f6cb 100644 --- a/source/blender/makesrna/intern/rna_modifier.cc +++ b/source/blender/makesrna/intern/rna_modifier.cc @@ -9853,7 +9853,7 @@ static void rna_def_modifier_grease_pencil_multiply(BlenderRNA *brna) RNA_def_property_int_sdna(prop, nullptr, "duplications"); RNA_def_property_range(prop, 0, 999); RNA_def_property_ui_range(prop, 1, 10, 1, 1); - RNA_def_property_ui_text(prop, "duplicates", "How many copies of strokes be displayed"); + RNA_def_property_ui_text(prop, "Duplicates", "How many copies of strokes be displayed"); RNA_def_property_update(prop, 0, "rna_Modifier_update"); prop = RNA_def_property(srna, "distance", PROP_FLOAT, PROP_DISTANCE);