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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-01-19 00:51:26 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-01-19 00:51:26 +0400
commit7771f0fee3e508674b4852d0ae1f3ae01243ade8 (patch)
treee79c31704cc43b873b735bc05f65e4866bcd6a2a /object_fracture
parente837d39bd3928cf829893b4fa64100ed0e7d2256 (diff)
- Removed dots from the end of description
- Check for keymap availability to suppress warning messages when running blender in background mode
Diffstat (limited to 'object_fracture')
-rw-r--r--object_fracture/fracture_ops.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/object_fracture/fracture_ops.py b/object_fracture/fracture_ops.py
index fb609b67..61ccc182 100644
--- a/object_fracture/fracture_ops.py
+++ b/object_fracture/fracture_ops.py
@@ -342,13 +342,13 @@ def fracture_group(context, group):
class FractureSimple(bpy.types.Operator):
- '''Split object with boolean operations for simulation, uses an object.'''
+ '''Split object with boolean operations for simulation, uses an object'''
bl_idname = "object.fracture_simple"
bl_label = "Fracture Object"
bl_options = {'REGISTER', 'UNDO'}
exe = BoolProperty(name="Execute",
- description="If it shall actually run, for optimal performance...",
+ description="If it shall actually run, for optimal performance",
default=False)
hierarchy = BoolProperty(name="Generate hierarchy",
@@ -388,13 +388,13 @@ class FractureSimple(bpy.types.Operator):
class FractureGroup(bpy.types.Operator):
- '''Split object with boolean operations for simulation, uses a group.'''
+ '''Split object with boolean operations for simulation, uses a group'''
bl_idname = "object.fracture_group"
bl_label = "Fracture Object (Group)"
bl_options = {'REGISTER', 'UNDO'}
exe = BoolProperty(name="Execute",
- description="If it shall actually run, for optimal performance...",
+ description="If it shall actually run, for optimal performance",
default=False)
group = StringProperty(name="Group",