Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
committerPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
commit9edfa1364971d41424644ad9499f80187ebaa553 (patch)
treef4cd71456f1c546bf4b57706e2090557ee885207 /mesh_looptools.py
parent77c3275cf83478352240740b80739747dca9fe0c (diff)
fix warnings with UI description
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index b061f6ea..660d0885 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -3726,7 +3726,7 @@ class GStretch(bpy.types.Operator):
conversion_vertices = bpy.props.IntProperty(name = "Vertices",
description = "Number of vertices grease pencil strokes will "\
"have, when they are converted to geometry. If strokes have less "\
- "points than required, the 'Spread evenly' method is used.",
+ "points than required, the 'Spread evenly' method is used",
default = 32,
min = 3,
soft_max = 500)
@@ -4648,7 +4648,7 @@ class LoopToolsProps(bpy.types.PropertyGroup):
gstretch_conversion_vertices = bpy.props.IntProperty(name = "Vertices",
description = "Number of vertices grease pencil strokes will "\
"have, when they are converted to geometry. If strokes have less "\
- "points than required, the 'Spread evenly' method is used.",
+ "points than required, the 'Spread evenly' method is used",
default = 32,
min = 3,
soft_max = 500)