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:
authorCampbell Barton <ideasman42@gmail.com>2019-11-15 06:35:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-15 06:36:16 +0300
commit8863fc65ca3deb6ba3ef7c8a3976b7d4b7661c30 (patch)
treeb7a72f0b1aac20098a6bd20acbdef13aaae1637c /source/blender/makesrna/intern/rna_gpencil_modifier.c
parent96ce32dca6ab92ac9fbd807fd50525cc5e50c636 (diff)
Cleanup: unused argument, variable warnings
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 4352b6628e2..7aa3ee60c5a 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -1947,7 +1947,7 @@ static void rna_def_modifier_gpencilmultiply(BlenderRNA *brna)
prop = RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0, M_PI);
- RNA_def_property_ui_text(prop, "Distance", "Distance of duplications.");
+ RNA_def_property_ui_text(prop, "Distance", "Distance of duplications");
RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
prop = RNA_def_property(srna, "offset", PROP_FLOAT, PROP_NONE);