From 1f39afd8d12daf963fc0e21156b38c67b396dd9a Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 10 Dec 2021 22:40:13 +0900 Subject: [PATCH] Konsole: fixed detection of root mc in session menu. This resolves issue #245. Signed-off-by: Michele Calgaro --- konsole/konsole/konsole.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/konsole/konsole/konsole.cpp b/konsole/konsole/konsole.cpp index 0101ecab3..b6d5e1c69 100644 --- a/konsole/konsole/konsole.cpp +++ b/konsole/konsole/konsole.cpp @@ -3434,6 +3434,7 @@ void Konsole::addSessionCommand(const TQString &path) // try to locate the binary TQString exec= co->readPathEntry("Exec"); exec.remove(TQRegExp("^(sudo )?su (- )?-c ?\'")); + exec.remove(TQRegExp("\'?$")); exec = KRun::binaryName(exec, false); exec = KShell::tildeExpand(exec);