fix: re-enable delete plate button when changing plate selection

UpdateRemovePlateButton() was only called from PlateListChanged,
not CurrentPlateChanged, so the button stayed disabled after switching
away from the sentinel plate.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 22:26:49 -04:00
parent cca70db547
commit 959ab15491
3 changed files with 223 additions and 2 deletions
+1
View File
@@ -892,6 +892,7 @@ namespace OpenNest.Forms
PlateView.Plate = PlateManager.CurrentPlate;
PlateView.ZoomToFit();
UpdatePlateHeader();
UpdateRemovePlateButton();
PlateChanged?.Invoke(this, EventArgs.Empty);
}