From 1b3291fcfa4634b5f6f126dd47dc4340c632a5ad Mon Sep 17 00:00:00 2001 From: Tim Young Date: Thu, 1 Mar 2018 12:31:15 -0600 Subject: [PATCH] make context menu visible --- EduNetworkBuilder/ShapeEditor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EduNetworkBuilder/ShapeEditor.cs b/EduNetworkBuilder/ShapeEditor.cs index e5604be..172aa46 100644 --- a/EduNetworkBuilder/ShapeEditor.cs +++ b/EduNetworkBuilder/ShapeEditor.cs @@ -187,6 +187,8 @@ namespace EduNetworkBuilder lbShapeList.ContextMenuStrip.Items.Add(NB.Translate("SE_MoveToEnd")); lbShapeList.ContextMenuStrip.Items[index++].Click += lblShape_MoveToEnd; + lbShapeList.ContextMenuStrip.Visible = true; + lbShapeList.ContextMenuStrip.Show(Cursor.Position); } } //If it is a left mouse button, we simply select the item so we can edit it