From 07c80018ce243525d98098ba09b0efd1c80330fa Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 26 Feb 2012 04:52:15 +0800 Subject: [PATCH] Use "%d" instead of "%D" in the default local tab format "%d" has always been used as the default since KDE4, until in KDE SC 4.8 it is replaced by "%D" as a workaround for the problem in BKO 192081 --- src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Profile.cpp b/src/Profile.cpp index 53603f0f..5e0a0e28 100644 --- a/src/Profile.cpp +++ b/src/Profile.cpp @@ -147,7 +147,7 @@ FallbackProfile::FallbackProfile() setProperty(Icon, "utilities-terminal"); setProperty(Arguments, QStringList() << qgetenv("SHELL")); setProperty(Environment, QStringList() << "TERM=xterm"); - setProperty(LocalTabTitleFormat, "%D : %n"); + setProperty(LocalTabTitleFormat, "%d : %n"); setProperty(RemoteTabTitleFormat, "(%u) %H"); setProperty(ShowTerminalSizeHint, true); setProperty(SaveGeometryOnExit, true);