From 2ce16d70ba224de905d978bfecc737cba21820bb Mon Sep 17 00:00:00 2001 From: George Staikos Date: Tue, 9 Nov 2004 13:45:21 +0000 Subject: [PATCH] On second thought, titlebars like this are silly: "user@host:~@host" make it: "user@host:~ <@host>" svn path=/trunk/kdebase/kwin/; revision=361700 --- client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.cpp b/client.cpp index 56ac32d8bf..41ab78fe9f 100644 --- a/client.cpp +++ b/client.cpp @@ -1244,7 +1244,7 @@ void Client::setCaption( const QString& s, bool force ) bool was_suffix = ( !cap_suffix.isEmpty()); QString machine_suffix; if( !isLocalMachine( wmClientMachine( false ))) - machine_suffix = "@" + wmClientMachine( true ); + machine_suffix = " <@" + wmClientMachine( true ) + ">"; cap_suffix = machine_suffix; if ( ( !isSpecialWindow() || isToolbar()) && workspace()->findClient( FetchNameInternalPredicate( this ))) {