From 596328148d534befd45d43cf751cc76417c48b67 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Fri, 27 Mar 2026 18:07:32 -0400 Subject: [PATCH] fix: correct dock z-order so Fill control gets remaining space Fill must be at index 0 (front) so it's processed last by the docking layout engine. Edge docks at higher indices process first. Co-Authored-By: Claude Opus 4.6 (1M context) --- OpenNest/Forms/BomImportForm.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenNest/Forms/BomImportForm.Designer.cs b/OpenNest/Forms/BomImportForm.Designer.cs index 4cd5f9e..dd22230 100644 --- a/OpenNest/Forms/BomImportForm.Designer.cs +++ b/OpenNest/Forms/BomImportForm.Designer.cs @@ -215,9 +215,9 @@ namespace OpenNest.Forms AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; CancelButton = btnClose; ClientSize = new System.Drawing.Size(520, 500); + Controls.Add(grpGroups); Controls.Add(pnlBottom); Controls.Add(grpInput); - Controls.Add(grpGroups); Font = new System.Drawing.Font("Segoe UI", 9F); MinimumSize = new System.Drawing.Size(400, 350); MaximizeBox = false;