diff --git a/batchprocessing.cpp b/batchprocessing.cpp index 5edc728..e2ac41b 100644 --- a/batchprocessing.cpp +++ b/batchprocessing.cpp @@ -8,6 +8,7 @@ #include #include #include +#include #include "scriptengine.h" #ifdef Q_OS_LINUX @@ -184,6 +185,9 @@ void BatchProcessing::openScriptDir() #ifdef Q_OS_WINDOWS QProcess::startDetached("explorer.exe", {QDir::toNativeSeparators(_scriptBasePath)}); #endif +#ifdef Q_OS_MACOS + QDesktopServices::openUrl(QUrl::fromLocalFile(_scriptBasePath)); +#endif } void BatchProcessing::runScript()