Allow relative program parameters on command line and profiles.

BUG: 202302

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1027909
wilder-portage
Kurt Hindenburg 17 years ago
parent 9f3e26e76f
commit c45359a075
  1. 3
      src/Session.cpp

@ -408,6 +408,9 @@ void Session::run()
// the background color is deemed dark or not
QString backgroundColorHint = _hasDarkBackground ? "COLORFGBG=15;0" : "COLORFGBG=0;15";
if (exec.startsWith(QLatin1String("./")))
exec = QDir::currentPath() + exec.mid(1);
int result = _shellProcess->start(exec,
arguments,
_environment << backgroundColorHint,

Loading…
Cancel
Save