[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3134] trunk/py/scripts/addons/ mesh_inset/__init__.py: renaming to inset polygon in ui & operator mesh. insetpoly

Brendon Murphy meta.androcto1 at gmail.com
Mon Mar 19 23:18:02 CET 2012


Revision: 3134
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3134
Author:   meta-androcto
Date:     2012-03-19 22:17:59 +0000 (Mon, 19 Mar 2012)
Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/py/scripts/addons/mesh_inset/__init__.py

Modified: trunk/py/scripts/addons/mesh_inset/__init__.py
===================================================================
--- trunk/py/scripts/addons/mesh_inset/__init__.py	2012-03-19 19:17:34 UTC (rev 3133)
+++ trunk/py/scripts/addons/mesh_inset/__init__.py	2012-03-19 22:17:59 UTC (rev 3134)
@@ -51,8 +51,8 @@
 
 
 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 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():



More information about the Bf-extensions-cvs mailing list