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:
authormeta-androcto <meta.androcto1@gmail.com>2017-01-22 02:52:23 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-01-22 02:52:23 +0300
commit509bdb24e2f9598e41ad6f1d0d55dcd2aa1a4f23 (patch)
tree51a0698349c960d12b60164ef5b22957f0cb5477 /add_mesh_BoltFactory/__init__.py
parent8c7a77ab5c8f8e55fd12de72c7388676874e6488 (diff)
bolt factory: T50443 add division count for higher precision
Diffstat (limited to 'add_mesh_BoltFactory/__init__.py')
-rw-r--r--add_mesh_BoltFactory/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_mesh_BoltFactory/__init__.py b/add_mesh_BoltFactory/__init__.py
index d031f5ec..16dd9a9c 100644
--- a/add_mesh_BoltFactory/__init__.py
+++ b/add_mesh_BoltFactory/__init__.py
@@ -19,8 +19,8 @@
bl_info = {
"name": "BoltFactory",
"author": "Aaron Keith",
- "version": (3, 10),
- "blender": (2, 63, 0),
+ "version": (0, 3, 1),
+ "blender": (2, 78, 0),
"location": "View3D > Add > Mesh",
"description": "Add a bolt or nut",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -41,7 +41,7 @@ import bpy
##### REGISTER #####
def add_mesh_bolt_button(self, context):
- self.layout.operator(Boltfactory.add_mesh_bolt.bl_idname, text="Bolt", icon="PLUGIN")
+ self.layout.operator(Boltfactory.add_mesh_bolt.bl_idname, text="Bolt", icon="MOD_SCREW")
def register():