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
wilder-portage
Jekyll Wu 14 years ago
parent 5a936adb20
commit 07c80018ce
  1. 2
      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);

Loading…
Cancel
Save