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:
authorBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
commit1d1482044b46c98f86c33945a1bd1cf4edc7bb36 (patch)
tree795f6b4344018f9193e6beb954d5c74396c19012 /mesh_looptools.py
parent0dd81203a3982e55af012cfcc9a232c78ce631b9 (diff)
/trunk: Removed final points in UI strings and messages.
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 7d385897..0bfb876e 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -2648,7 +2648,8 @@ class Bridge(bpy.types.Operator):
default = True)
reverse = bpy.props.BoolProperty(name = "Reverse",
description = "Manually override the direction in which the loops "\
- "are bridged. Only use if the tool gives the wrong result.",
+ "are bridged. Only use if the tool gives the wrong " \
+ "result",
default = False)
segments = bpy.props.IntProperty(name = "Segments",
description = "Number of segments used to bridge the gap "\
@@ -3524,8 +3525,9 @@ class LoopToolsProps(bpy.types.PropertyGroup):
max = 100,
subtype = 'PERCENTAGE')
bridge_mode = bpy.props.EnumProperty(name = "Mode",
- items = (('basic', "Basic", "Fast algorithm"), ('shortest',
- "Shortest edge", "Slower algorithm with better vertex matching")),
+ items = (('basic', "Basic", "Fast algorithm"),
+ ('shortest', "Shortest edge", "Slower algorithm with " \
+ "better vertex matching")),
description = "Algorithm used for bridging",
default = 'shortest')
bridge_remove_faces = bpy.props.BoolProperty(name = "Remove faces",
@@ -3533,7 +3535,8 @@ class LoopToolsProps(bpy.types.PropertyGroup):
default = True)
bridge_reverse = bpy.props.BoolProperty(name = "Reverse",
description = "Manually override the direction in which the loops "\
- "are bridged. Only use if the tool gives the wrong result.",
+ "are bridged. Only use if the tool gives the wrong " \
+ "result",
default = False)
bridge_segments = bpy.props.IntProperty(name = "Segments",
description = "Number of segments used to bridge the gap "\