feat: add View > Draw Offset menu item

Toggles offset geometry visualization from the View menu, matching
the existing Draw Rapids and Draw Bounds menu pattern.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 19:31:55 -05:00
parent eb7fb097b9
commit 64cacf6d17
3 changed files with 25 additions and 1 deletions
+6
View File
@@ -378,6 +378,12 @@ namespace OpenNest.Forms
PlateView.Invalidate();
}
public void ToggleDrawOffset()
{
PlateView.DrawOffset = !PlateView.DrawOffset;
PlateView.Invalidate();
}
public void ToggleFillParts()
{
PlateView.FillParts = !PlateView.FillParts;