From d7d9686398dd1ebc9fc9816cc8bafdda4fc142b9 Mon Sep 17 00:00:00 2001
From: Brendon Murphy <meta.androcto1@gmail.com>
Date: Mon, 19 Mar 2012 22:17:59 +0000
Subject: [PATCH] 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.

---
 mesh_inset/__init__.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index b78cba3c3..20250b08a 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():
-- 
GitLab