mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-12 21:57:19 -04:00
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.
This commit is contained in:
1 parent
986dda5eaa
commit
5ca43895f2
1 file changed
+2
-2
@@ -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;
|
||||
|
||||
Reference in new issue
Block a user