From febd3c63da2cbaa9d99a9f2d1c7264de58d6bd7d Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Sun, 31 Jul 2011 15:42:38 -0400 Subject: [PATCH] Change the default LocalTabTitleFormat to use %D instead of %d %d will shorten the directory name whereas %D will not. For some users, having %d as the default is confusing as they don't understand why some directories are not displaying correctly in the tab text. Currently there is no UI to examine or change which folder names will be shorten. CCBUG: 190281 --- src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Profile.cpp b/src/Profile.cpp index 42af4d3d4..32badb125 100644 --- a/src/Profile.cpp +++ b/src/Profile.cpp @@ -153,7 +153,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(TabBarMode,AlwaysShowTabBar); setProperty(TabBarPosition,TabBarBottom);