mirror of https://github.com/Icinga/icinga2.git
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:
parent
2a7cdf2fdc
commit
c00495c5c7
|
@ -62,7 +62,6 @@
|
|||
//
|
||||
// txtHost
|
||||
//
|
||||
this.txtHost.Enabled = false;
|
||||
this.txtHost.Location = new System.Drawing.Point(101, 103);
|
||||
this.txtHost.Name = "txtHost";
|
||||
this.txtHost.Size = new System.Drawing.Size(251, 20);
|
||||
|
@ -70,7 +69,6 @@
|
|||
//
|
||||
// txtPort
|
||||
//
|
||||
this.txtPort.Enabled = false;
|
||||
this.txtPort.Location = new System.Drawing.Point(101, 134);
|
||||
this.txtPort.Name = "txtPort";
|
||||
this.txtPort.Size = new System.Drawing.Size(100, 20);
|
||||
|
@ -123,6 +121,8 @@
|
|||
// chkConnect
|
||||
//
|
||||
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.Name = "chkConnect";
|
||||
this.chkConnect.Size = new System.Drawing.Size(141, 17);
|
||||
|
|
Loading…
Reference in New Issue