Merge pull request #1345 from WinnieP/fix_client_title

Fix client title
This commit is contained in:
LevelX2 2015-10-29 07:57:29 +01:00
commit 2a7a539031

View file

@ -372,7 +372,7 @@ public class MageFrame extends javax.swing.JFrame implements MageClient {
private void setWindowTitle() {
setTitle(TITLE_NAME + " Client: "
+ version == null ? "<not available>" : version.toString() + " Server: "
+ (version == null ? "<not available>" : version.toString()) + " Server: "
+ ((session != null && session.isConnected()) ? session.getVersionInfo() : "<not connected>"));
}