fix_ssl_irc_on_nonstandard_ports.patch
b/src/Frontend-GNOME/Views/ServerWidget.cs | ||
---|---|---|
117 | 117 |
f_HostnameEntry.Sensitive = false; |
118 | 118 |
f_HostnameEntry.Text = server.Hostname; |
119 | 119 |
|
120 |
f_PortSpinButton.Value = server.Port; |
|
121 | 120 |
f_NetworkComboBoxEntry.Entry.Text = server.Network; |
122 | 121 |
f_UsernameEntry.Text = server.Username; |
123 | 122 |
// HACK: Twitter username is part of the PKEY, not allowed to change |
... | ... | |
128 | 127 |
f_UseEncryptionCheckButton.Active = server.UseEncryption; |
129 | 128 |
f_ValidateServerCertificateCheckButton.Active = |
130 | 129 |
server.ValidateServerCertificate; |
130 |
f_PortSpinButton.Value = server.Port; |
|
131 | 131 |
OnStartupConnectCheckButton.Active = server.OnStartupConnect; |
132 | 132 |
if (server.OnConnectCommands == null || |
133 | 133 |
server.OnConnectCommands.Count == 0) { |
134 | 134 |