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:
Generated
+1
-2
@@ -143,8 +143,7 @@ namespace OpenNest.Forms
|
|||||||
grpInput.Controls.Add(tbl);
|
grpInput.Controls.Add(tbl);
|
||||||
grpInput.Dock = System.Windows.Forms.DockStyle.Top;
|
grpInput.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
grpInput.Name = "grpInput";
|
grpInput.Name = "grpInput";
|
||||||
grpInput.AutoSize = true;
|
grpInput.Height = 200;
|
||||||
grpInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
||||||
grpInput.Padding = new System.Windows.Forms.Padding(6);
|
grpInput.Padding = new System.Windows.Forms.Padding(6);
|
||||||
grpInput.TabIndex = 0;
|
grpInput.TabIndex = 0;
|
||||||
grpInput.TabStop = false;
|
grpInput.TabStop = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user