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:
authorBrendon Murphy <meta.androcto1@gmail.com>2012-03-20 02:17:59 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2012-03-20 02:17:59 +0400
commitd7d9686398dd1ebc9fc9816cc8bafdda4fc142b9 (patch)
tree1d07c90c72c0c4b49722305d5cc82b7f5317340b /mesh_inset
parent9dd231ae6d711fc2d148f374974044a0b65f5522 (diff)
renaming to inset polygon in ui & operator mesh.insetpoly
this removes conflicts with the inset built in ctrl/f menu not working if this addon was enabled.
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index b78cba3c..20250b08 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -51,8 +51,8 @@ from bpy.props import (BoolProperty,
class Inset(bpy.types.Operator):
- bl_idname = "mesh.inset"
- bl_label = "Inset"
+ bl_idname = "mesh.insetpoly"
+ bl_label = "Inset Polygon"
bl_description = "Make an inset polygon inside selection"
bl_options = {'REGISTER', 'UNDO'}
@@ -171,8 +171,8 @@ def do_inset(mesh, amount, height, region, as_percent):
def panel_func(self, context):
- self.layout.label(text="Inset:")
- self.layout.operator("mesh.inset", text="Inset")
+ self.layout.label(text="Inset Polygon:")
+ self.layout.operator("mesh.insetpoly", text="Inset Polygon")
def register():