Utilities: Remove `--new-window` parameter from dolphin

Fixes #1412
This commit is contained in:
Jonas Kvinge 2024-04-02 00:48:29 +02:00
parent 06fa17f33f
commit 05c4d23df6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ void OpenInFileManager(const QString &path, const QUrl &url) {
proc.startDetached(command, QStringList() << command_params << "--select" << url.toLocalFile());
}
else if (command.startsWith("dolphin") || command.startsWith("konqueror") || command.startsWith("kfmclient")) {
proc.startDetached(command, QStringList() << command_params << "--select" << "--new-window" << url.toLocalFile());
proc.startDetached(command, QStringList() << command_params << "--select" << url.toLocalFile());
}
else if (command.startsWith("caja")) {
proc.startDetached(command, QStringList() << command_params << "--no-desktop" << path);