diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-12 20:48:06 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-12 20:48:06 +0900 |
commit | 4ce5ad8c3c1fa5a972901232ef2187c857bc89f8 (patch) | |
tree | d61642cfcec6294a723cd9cb583ede9a66651d79 /kdesktop | |
parent | 6949aae9ce625d009008872fe4297638f12fe1ce (diff) | |
download | tdebase-4ce5ad8c3c1fa5a972901232ef2187c857bc89f8.tar.gz tdebase-4ce5ad8c3c1fa5a972901232ef2187c857bc89f8.zip |
Fixed handling of KDesktop -> Right click -> Open Terminal Here... when
the terminal application is different from Konsole.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdesktop')
-rw-r--r-- | kdesktop/krootwm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/krootwm.cc b/kdesktop/krootwm.cc index c14d1326c..9c68fc740 100644 --- a/kdesktop/krootwm.cc +++ b/kdesktop/krootwm.cc @@ -763,8 +763,8 @@ void KRootWm::slotOpenTerminal() TDEConfigGroupSaver gs(TDEGlobal::config(), "General"); TQString terminal = TDEGlobal::config()->readPathEntry("TerminalApplication", "konsole"); - *p << terminal << "--workdir=" + TDEGlobalSettings::desktopPath() + "/"; - + *p << terminal; + p->setWorkingDirectory(TDEGlobalSettings::desktopPath()); p->start(TDEProcess::DontCare); delete p; |