Show nodes for fixed size region too

This commit is contained in:
Jaex 2016-05-25 21:42:46 +03:00
parent a87b4d48a4
commit 1b67c9e2b9

View file

@ -590,7 +590,7 @@ private void CreateContextMenu()
tsmiShowCrosshair.Click += (sender, e) => Config.ShowCrosshair = tsmiShowCrosshair.Checked;
tsmiOptions.DropDownItems.Add(tsmiShowCrosshair);
ToolStripMenuItem tsmiFixedSize = new ToolStripMenuItem("Fixed size mode");
ToolStripMenuItem tsmiFixedSize = new ToolStripMenuItem("Fixed size region mode");
tsmiFixedSize.Checked = Config.IsFixedSize;
tsmiFixedSize.CheckOnClick = true;
tsmiFixedSize.Click += (sender, e) => Config.IsFixedSize = tsmiFixedSize.Checked;
@ -1267,7 +1267,7 @@ private void SelectShape()
{
BaseShape shape = CurrentShape;
if (shape != null && !CurrentRectangle.IsEmpty && !Config.IsFixedSize && shape.NodeType != NodeType.Point)
if (shape != null && !CurrentRectangle.IsEmpty && shape.NodeType != NodeType.Point)
{
ResizeManager.Show();
}