Korero

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 1  →  ?path2? @ 2
/Korero/SettingsForm.cs
@@ -19,7 +19,6 @@
public SettingsForm()
{
InitializeComponent();
Utilities.WindowState.FormTracker.Track(this);
}
 
public SettingsForm(MqttCommunication mqttCommunication) : this()
@@ -59,7 +58,11 @@
#endregion
 
#region Event Handlers
private void SettingsForm_Load(object sender, EventArgs e)
{
Utilities.WindowState.FormTracker.Track(this);
 
}
private void MqttCommunication_Disconnected(object sender, MqttDisconnectedEventArgs e)
{
corradeConnectionStatusLabel.InvokeIfRequired(label => { label.Text = "Connection failed..."; });
@@ -110,5 +113,7 @@
}
 
#endregion
 
 
}
}