mirror of https://github.com/quasar/Quasar.git
Fixed adding wrong port number in builder
This commit is contained in:
parent
efef5c0100
commit
05e485a485
|
@ -120,7 +120,7 @@ private void btnAddHost_Click(object sender, EventArgs e)
|
|||
HasChanged();
|
||||
|
||||
var host = txtHost.Text;
|
||||
ushort port = (ushort)numericUpDownDelay.Value;
|
||||
ushort port = (ushort)numericUpDownPort.Value;
|
||||
|
||||
_hosts.Add(new Host {Hostname = host, Port = port});
|
||||
txtHost.Text = "";
|
||||
|
|
Loading…
Reference in New Issue