Do not block while launching the explorer on linux

Fixes #1338
This commit is contained in:
Olivier Goffart 2014-01-21 12:52:25 +01:00
parent c4c36d641b
commit 0c33fc6e8a

View file

@ -430,7 +430,7 @@ void Utility::showInFileManager(const QString &localPath)
// fall back: open the default file manager, without ever selecting the file
QDesktopServices::openUrl(QUrl::fromLocalFile(pathToOpen));
} else {
QProcess::execute(app, args);
QProcess::startDetached(app, args);
}
}
}