fix: use fixed height for input group instead of AutoSize

AutoSize with Dock.Fill child causes circular sizing and collapses
the GroupBox. Use fixed Height=200 instead.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 18:04:43 -04:00
parent 42243c7df0
commit 6cd48a623d

View File

@@ -143,8 +143,7 @@ namespace OpenNest.Forms
grpInput.Controls.Add(tbl);
grpInput.Dock = System.Windows.Forms.DockStyle.Top;
grpInput.Name = "grpInput";
grpInput.AutoSize = true;
grpInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
grpInput.Height = 200;
grpInput.Padding = new System.Windows.Forms.Padding(6);
grpInput.TabIndex = 0;
grpInput.TabStop = false;