From 335701a629febf6d2439c144462b5e1051334803 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Dec 2025 07:02:25 +0000 Subject: [PATCH 1/2] fix: Increase dialog height to make Login button visible - Increased form height from 300px to 320px - Moved bottom buttons from Y=260 to Y=270 for better visibility - Ensures Login button is clearly visible below the authentication warning message --- Intersect.Editor/Forms/FrmUploadToServer.Designer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs b/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs index f0aef0d4ae..3ae5e222e8 100644 --- a/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs +++ b/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs @@ -172,7 +172,7 @@ private void InitializeComponent() // // btnLogin // - this.btnLogin.Location = new System.Drawing.Point(15, 260); + this.btnLogin.Location = new System.Drawing.Point(15, 270); this.btnLogin.Name = "btnLogin"; this.btnLogin.Padding = new System.Windows.Forms.Padding(5); this.btnLogin.Size = new System.Drawing.Size(85, 28); @@ -184,7 +184,7 @@ private void InitializeComponent() // btnUpload // this.btnUpload.Enabled = false; - this.btnUpload.Location = new System.Drawing.Point(297, 260); + this.btnUpload.Location = new System.Drawing.Point(297, 270); this.btnUpload.Name = "btnUpload"; this.btnUpload.Padding = new System.Windows.Forms.Padding(5); this.btnUpload.Size = new System.Drawing.Size(85, 28); @@ -195,7 +195,7 @@ private void InitializeComponent() // btnClose // this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnClose.Location = new System.Drawing.Point(388, 260); + this.btnClose.Location = new System.Drawing.Point(388, 270); this.btnClose.Name = "btnClose"; this.btnClose.Padding = new System.Windows.Forms.Padding(5); this.btnClose.Size = new System.Drawing.Size(84, 28); @@ -207,7 +207,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(484, 300); + this.ClientSize = new System.Drawing.Size(484, 320); this.Controls.Add(this.btnTestUrl); this.Controls.Add(this.btnLogin); this.Controls.Add(this.btnClose); From 2c4575ffe4c7c56644ffaadcf30f79be3c16287f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Dec 2025 07:05:12 +0000 Subject: [PATCH 2/2] fix: Group all buttons on the right side of upload dialog - Moved Login button from X=15 to X=206 - All three buttons (Login, Upload, Close) now aligned on the right - Maintains consistent 6px spacing between buttons --- Intersect.Editor/Forms/FrmUploadToServer.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs b/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs index 3ae5e222e8..367109e457 100644 --- a/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs +++ b/Intersect.Editor/Forms/FrmUploadToServer.Designer.cs @@ -172,7 +172,7 @@ private void InitializeComponent() // // btnLogin // - this.btnLogin.Location = new System.Drawing.Point(15, 270); + this.btnLogin.Location = new System.Drawing.Point(206, 270); this.btnLogin.Name = "btnLogin"; this.btnLogin.Padding = new System.Windows.Forms.Padding(5); this.btnLogin.Size = new System.Drawing.Size(85, 28);