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
This commit is contained in:
Kurt Hindenburg
2011-07-31 15:42:38 -04:00
parent 43ff8c48a7
commit febd3c63da

View File

@@ -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);