Skip to content

Commit c7388e2

Browse files
committed
Corrected bug
1 parent db9d975 commit c7388e2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Client.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ public Client()
3131
this.FormClosing += this_close;
3232
this.FormBorderStyle = FormBorderStyle.FixedSingle;
3333

34-
statusStrip1.Items[0].ForeColor = Color.Red;
35-
statusStrip1.Items[0].Text = lang.strings["ncon"];
36-
3734
lang = new Lang();
3835
client = new NetworksUtilsClient();
3936
Program.log.addLoggingElement(client.log);
@@ -46,6 +43,8 @@ public Client()
4643

4744
button2.Enabled = button3.Enabled = false;
4845

46+
statusStrip1.Items[0].ForeColor = Color.Red;
47+
statusStrip1.Items[0].Text = lang.strings["ncon"];
4948
}
5049

5150
private void this_close(object sender, FormClosingEventArgs e)

0 commit comments

Comments
 (0)