From 7771f0fee3e508674b4852d0ae1f3ae01243ade8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 18 Jan 2012 20:51:26 +0000 Subject: - Removed dots from the end of description - Check for keymap availability to suppress warning messages when running blender in background mode --- object_fracture/fracture_ops.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'object_fracture') 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", -- cgit v1.2.3