diff --git a/GreenshotPlugin/Core/PluginUtils.cs b/GreenshotPlugin/Core/PluginUtils.cs index ff9f93db4..4898f5ece 100644 --- a/GreenshotPlugin/Core/PluginUtils.cs +++ b/GreenshotPlugin/Core/PluginUtils.cs @@ -107,12 +107,9 @@ namespace GreenshotPlugin.Core { ToolStripSeparator separator = new ToolStripSeparator(); separator.Size = new Size(305, 6); contextMenu.Items.Insert(i, separator); - contextMenu.Items.Insert(i+1, item); - addedItem = true; - } else { - contextMenu.Items.Insert(i+1, item); - addedItem = true; } + contextMenu.Items.Insert(i + 1, item); + addedItem = true; break; } }