Skip to content

Commit

Permalink
Merge pull request #33 from SlavaRa/develop
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
SlavaRa committed Apr 14, 2016
2 parents bd35c44 + 28d2934 commit 0e88ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AntPanel/PluginUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void InitializeContextMenu()
{
ShortcutKeys = DelKeys
});
targetMenu = new ContextMenuStrip();
targetMenu = new ContextMenuStrip {Renderer = new DockPanelStripRenderer(false)};
targetMenu.Items.Add(new ToolStripMenuItem("Run target", run.Image, OnMenuRunClick)
{
ShortcutKeyDisplayString = "Enter"
Expand All @@ -106,7 +106,7 @@ void InitializeContextMenu()
{
ShortcutKeys = EditKeys
});
errorMenu = new ContextMenuStrip();
errorMenu = new ContextMenuStrip {Renderer = new DockPanelStripRenderer(false)};
errorMenu.Items.Add(new ToolStripMenuItem("Show in Editor", editImage, OnMenuEditClick)
{
ShortcutKeys = EditKeys
Expand Down

0 comments on commit 0e88ab6

Please sign in to comment.