From 297ebee45b788f292eafaaff1d452328abdbcefa Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Mon, 6 Apr 2026 08:00:09 -0400 Subject: [PATCH] fix: stop plate list changes from forcing tab switch PlateListChanged handler was setting tabControl1.SelectedIndex = 0, which forced the UI to the plates tab whenever a sentinel plate was auto-created during part placement, disrupting the workflow. Co-Authored-By: Claude Opus 4.6 (1M context) --- OpenNest/Forms/EditNestForm.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OpenNest/Forms/EditNestForm.cs b/OpenNest/Forms/EditNestForm.cs index 5a5334f..9ab33bc 100644 --- a/OpenNest/Forms/EditNestForm.cs +++ b/OpenNest/Forms/EditNestForm.cs @@ -899,7 +899,6 @@ namespace OpenNest.Forms private void PlateManager_PlateListChanged(object sender, EventArgs e) { - tabControl1.SelectedIndex = 0; UpdatePlateList(); UpdatePlateHeader(); UpdateRemovePlateButton();