Windows Wizard: Always enable the endpoint connection form

We always have to tick them anyways, as otherwise the setup wizard
won't work with CSR signing.

refs #5681
This commit is contained in:
Michael Friedrich 2017-10-16 18:25:48 +02:00
parent 2a7cdf2fdc
commit c00495c5c7

View File

@ -62,7 +62,6 @@
// //
// txtHost // txtHost
// //
this.txtHost.Enabled = false;
this.txtHost.Location = new System.Drawing.Point(101, 103); this.txtHost.Location = new System.Drawing.Point(101, 103);
this.txtHost.Name = "txtHost"; this.txtHost.Name = "txtHost";
this.txtHost.Size = new System.Drawing.Size(251, 20); this.txtHost.Size = new System.Drawing.Size(251, 20);
@ -70,7 +69,6 @@
// //
// txtPort // txtPort
// //
this.txtPort.Enabled = false;
this.txtPort.Location = new System.Drawing.Point(101, 134); this.txtPort.Location = new System.Drawing.Point(101, 134);
this.txtPort.Name = "txtPort"; this.txtPort.Name = "txtPort";
this.txtPort.Size = new System.Drawing.Size(100, 20); this.txtPort.Size = new System.Drawing.Size(100, 20);
@ -123,6 +121,8 @@
// chkConnect // chkConnect
// //
this.chkConnect.AutoSize = true; this.chkConnect.AutoSize = true;
this.chkConnect.Checked = true;
this.chkConnect.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkConnect.Location = new System.Drawing.Point(18, 73); this.chkConnect.Location = new System.Drawing.Point(18, 73);
this.chkConnect.Name = "chkConnect"; this.chkConnect.Name = "chkConnect";
this.chkConnect.Size = new System.Drawing.Size(141, 17); this.chkConnect.Size = new System.Drawing.Size(141, 17);