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:
authorJoshua Leung <aligorith@gmail.com>2016-05-08 17:00:23 +0300
committerJoshua Leung <aligorith@gmail.com>2016-05-08 17:00:23 +0300
commit3f934b06a6d917de74987c48d17248e4501bae94 (patch)
treecc11298c5d8634753833e9751db15c05963c41e5 /source/blender/makesrna/intern/rna_gpencil.c
parentd4ed5c398e689c46b8dc90134ad0ebabfcb79272 (diff)
Tweaks for a tooltip I missed during earlier review for D1886
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 0aebca8f56b..82d98d4b199 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -814,7 +814,9 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
prop = RNA_def_property(srna, "pen_smooth_steps", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "draw_smoothlvl");
RNA_def_property_range(prop, 1, 3);
- RNA_def_property_ui_text(prop, "Iterations", "Number of times to smooth newly created strokes [+ reason/effect of using higher values of this property]");
+ RNA_def_property_ui_text(prop, "Iterations",
+ "Number of times to smooth newly created strokes."
+ "Smoothing strength is halved on each successive round of smoothing applied.");
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
/* Subdivision level for new strokes */