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:
Diffstat (limited to 'add_mesh_extra_objects/add_mesh_gemstones.py')
-rw-r--r--add_mesh_extra_objects/add_mesh_gemstones.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/add_mesh_extra_objects/add_mesh_gemstones.py b/add_mesh_extra_objects/add_mesh_gemstones.py
index 02bc10f4..481ca8b5 100644
--- a/add_mesh_extra_objects/add_mesh_gemstones.py
+++ b/add_mesh_extra_objects/add_mesh_gemstones.py
@@ -286,7 +286,7 @@ class AddGem(bpy.types.Operator):
"""Add a diamond gem"""
bl_idname = "mesh.primitive_gem_add"
bl_label = "Add Gem"
- bl_description = "Create an offset faceted gem."
+ bl_description = "Create an offset faceted gem"
bl_options = {'REGISTER', 'UNDO'}
segments = IntProperty(name="Segments",
@@ -300,17 +300,17 @@ class AddGem(bpy.types.Operator):
max=9999.0,
default=1.0)
crown_radius = FloatProperty(name="Table Radius",
- description="Radius of the table(top).",
+ description="Radius of the table(top)",
min=0.01,
max=9999.0,
default=0.6)
crown_height = FloatProperty(name="Table height",
- description="Height of the top half.",
+ description="Height of the top half",
min=0.01,
max=9999.0,
default=0.35)
pavilion_height = FloatProperty(name="Pavilion height",
- description="Height of bottom half.",
+ description="Height of bottom half",
min=0.01,
max=9999.0,
default=0.8)