]> source.dussan.org Git - tigervnc.git/commitdiff
Use the same window naming convention as the other viewers
authorBrian Hinz <bphinz@users.sourceforge.net>
Mon, 24 Oct 2011 21:28:34 +0000 (21:28 +0000)
committerBrian Hinz <bphinz@users.sourceforge.net>
Mon, 24 Oct 2011 21:28:34 +0000 (21:28 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4734 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/com/tigervnc/vncviewer/CConn.java

index 73c05628b047361ff7e1fdc0237411a5d38d4a86..f49e3342eabe74c88c5a0daa3741213f6a9d2cbf 100644 (file)
@@ -56,7 +56,7 @@ class ViewportFrame extends JFrame
 {
   public ViewportFrame(String name, CConn cc_) {
     cc = cc_;
-    setTitle("TigerVNC: "+name);
+    setTitle(name+" - TigerVNC");
     setFocusable(false);
     setFocusTraversalKeysEnabled(false);
     addWindowFocusListener(new WindowAdapter() {
@@ -337,7 +337,7 @@ public class CConn extends CConnection
     super.setName(name);
   
     if (viewport != null) {
-      viewport.setTitle("TigerVNC: "+name);
+      viewport.setTitle(name+" - TigerVNC");
     }
   }