From 5ca43895f2d7861ba8dbb8d21e3f6d31380f39a8 Mon Sep 17 00:00:00 2001 From: Allamagoosa <36551512+dmatlock171@users.noreply.github.com> Date: Fri, 14 Aug 2026 11:24:04 -0700 Subject: [PATCH] Fix overlapping controls in the WinForms process queue panel The 'At once' spinner sat at x136-181 on the second row, but the 'DL Limit:' label starts at x148. Moves the label and spinner up to the first row beside the Auto-scroll checkbox, where there is clear space between Cancel All and Clear Finished. --- .../ProcessQueue/ProcessQueueControl.Designer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/LibationWinForms/ProcessQueue/ProcessQueueControl.Designer.cs b/Source/LibationWinForms/ProcessQueue/ProcessQueueControl.Designer.cs index 788f1305..4590ff01 100644 --- a/Source/LibationWinForms/ProcessQueue/ProcessQueueControl.Designer.cs +++ b/Source/LibationWinForms/ProcessQueue/ProcessQueueControl.Designer.cs @@ -190,7 +190,7 @@ // this.concurrencyLbl.Anchor = System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top; this.concurrencyLbl.AutoSize = true; - this.concurrencyLbl.Location = new System.Drawing.Point(82, 30); + this.concurrencyLbl.Location = new System.Drawing.Point(172, 7); this.concurrencyLbl.Name = "concurrencyLbl"; this.concurrencyLbl.Size = new System.Drawing.Size(54, 15); this.concurrencyLbl.TabIndex = 7; @@ -199,7 +199,7 @@ // concurrencyNum // this.concurrencyNum.Anchor = System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top; - this.concurrencyNum.Location = new System.Drawing.Point(136, 27); + this.concurrencyNum.Location = new System.Drawing.Point(230, 3); this.concurrencyNum.Name = "concurrencyNum"; this.concurrencyNum.Size = new System.Drawing.Size(45, 23); this.concurrencyNum.TabIndex = 8;