We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db9d975 commit c7388e2Copy full SHA for c7388e2
Client.cs
@@ -31,9 +31,6 @@ public Client()
31
this.FormClosing += this_close;
32
this.FormBorderStyle = FormBorderStyle.FixedSingle;
33
34
- statusStrip1.Items[0].ForeColor = Color.Red;
35
- statusStrip1.Items[0].Text = lang.strings["ncon"];
36
-
37
lang = new Lang();
38
client = new NetworksUtilsClient();
39
Program.log.addLoggingElement(client.log);
@@ -46,6 +43,8 @@ public Client()
46
43
47
44
button2.Enabled = button3.Enabled = false;
48
45
+ statusStrip1.Items[0].ForeColor = Color.Red;
+ statusStrip1.Items[0].Text = lang.strings["ncon"];
49
}
50
51
private void this_close(object sender, FormClosingEventArgs e)
0 commit comments