fix: mark layout parts dirty after bulk lead-in assignment

Parts were not redrawn after AssignLeadIns because their LayoutPart
graphics paths were stale.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-31 17:39:18 -04:00
parent ffe32fc38c
commit f3ca021fad

View File

@@ -741,6 +741,9 @@ namespace OpenNest.Forms
};
assigner.Assign(plate);
foreach (var lp in PlateView.Parts)
lp.IsDirty = true;
PlateView.Invalidate();
}