From: Brian Hinz Date: Mon, 24 Oct 2011 21:28:34 +0000 (+0000) Subject: Use the same window naming convention as the other viewers X-Git-Tag: v1.1.90~76 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d4e88868a1304caafdc6bef84d0e94785f2ddb5;p=tigervnc.git Use the same window naming convention as the other viewers git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4734 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/java/com/tigervnc/vncviewer/CConn.java b/java/com/tigervnc/vncviewer/CConn.java index 73c05628..f49e3342 100644 --- a/java/com/tigervnc/vncviewer/CConn.java +++ b/java/com/tigervnc/vncviewer/CConn.java @@ -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"); } }