From 22c9a9983e6e348b749bd06854d1fffb19400b12 Mon Sep 17 00:00:00 2001
From: Howard Trickey <howard.trickey@gmail.com>
Date: Tue, 17 Sep 2019 09:33:59 -0400
Subject: [PATCH] Added the Inset Straight Skeleton command to edit faces menu
 when installed.

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

diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index 8702b3904..e8338d92c 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -317,9 +317,13 @@ def remove_dups(vs):
     seen = set()
     return [x for x in vs if not (x in seen or seen.add(x))]
 
+def menu(self, context):
+    self.layout.operator("mesh.insetstraightskeleton", text="Inset Straight Skeleton")
 
 def register():
     bpy.utils.register_class(MESH_OT_InsetStraightSkeleton)
+    bpy.types.VIEW3D_MT_edit_mesh_faces.append(menu)
 
 def unregister():
     bpy.utils.unregister_class(MESH_OT_InsetStraightSkeleton)
+    bpy.types.VIEW3D_MT_edit_mesh_faces.remove(menu)
-- 
GitLab