Add separator between region and drawing tools

This commit is contained in:
Jaex 2016-10-01 14:19:53 +03:00
parent 56cf767ab7
commit b7bdd40115

View file

@ -171,6 +171,11 @@ private void CreateMenu()
continue;
}
if (shapeType == ShapeType.DrawingRectangle)
{
tsMain.Items.Add(new ToolStripSeparator());
}
ToolStripButton tsbShapeType = new ToolStripButton(shapeType.GetLocalizedDescription());
tsbShapeType.DisplayStyle = ToolStripItemDisplayStyle.Image;