From 73fb0a6309917ea5e9e3e350d3da6a1a75a1e6d1 Mon Sep 17 00:00:00 2001 From: ngosang Date: Thu, 24 Sep 2015 15:52:47 +0200 Subject: [PATCH] Fix Konqueror detection in Plasma (KDE5) --- src/core/utils/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils/misc.cpp b/src/core/utils/misc.cpp index 1202dbfb9..d096587d6 100644 --- a/src/core/utils/misc.cpp +++ b/src/core/utils/misc.cpp @@ -601,7 +601,7 @@ void Utils::Misc::openFolderSelect(const QString& absolutePath) proc.startDetached("caja", QStringList() << "--no-desktop" << Utils::Fs::toNativePath(path)); else if (output == "nemo.desktop") proc.startDetached("nemo", QStringList() << "--no-desktop" << Utils::Fs::toNativePath(path)); - else if (output == "kfmclient_dir.desktop") + else if (output == "konqueror.desktop" || output == "kfmclient_dir.desktop") proc.startDetached("konqueror", QStringList() << "--select" << Utils::Fs::toNativePath(path)); else openPath(path.left(path.lastIndexOf("/")));