[Bf-blender-cvs] [9bd905e73fd] master: GPencil: Refine Tooltip for Noise modifier

Antonio Vazquez noreply at git.blender.org
Mon May 16 15:38:32 CEST 2022


Commit: 9bd905e73fdd673d05f0b2c7f89df101686b0aa6
Author: Antonio Vazquez
Date:   Mon May 16 15:38:26 2022 +0200
Branches: master
https://developer.blender.org/rB9bd905e73fdd673d05f0b2c7f89df101686b0aa6

GPencil: Refine Tooltip for Noise modifier

Feedback by @HooglyBoogly

===================================================================

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 05e8d5406b4..e6cb78ffcfc 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -929,7 +929,7 @@ static void rna_def_modifier_gpencilnoise(BlenderRNA *brna)
   prop = RNA_def_property(srna, "step", PROP_INT, PROP_NONE);
   RNA_def_property_int_sdna(prop, NULL, "step");
   RNA_def_property_range(prop, 1, 100);
-  RNA_def_property_ui_text(prop, "Step", "Number of frames interval between randomization steps");
+  RNA_def_property_ui_text(prop, "Step", "Number of frames between randomization steps");
   RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
 
   prop = RNA_def_property(srna, "invert_layers", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list