Update BTC_ConnectionManager.java

The status should be Connected instead of Connecting because the file is iconConnected.png
This commit is contained in:
Ryan 2020-07-13 21:38:47 +08:00 committed by GitHub
parent 6bd4a161c1
commit bdcd978833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class BTC_ConnectionManager
this.port = port;
this.loginName = null;
updateTitle(true);
BTC_MainPanel.setIconImage(BTC_MainPanel.getWindows()[0], "Connecting");
BTC_MainPanel.setIconImage(BTC_MainPanel.getWindows()[0], "Connected");
startConnectThread();
}