Revert "qds: workaround that appbundle finds the images"

This reverts commit f3fcce9f4f.

Reason for revert: produces other problems

Change-Id: I2225ffc96d30a9dc175a977602f7c8378b5cb31c
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
(cherry picked from commit 7a21214a2284ea0cab1fc536b9e407460eecb5d2)
This commit is contained in:
Tim Jenssen
2023-05-12 10:25:25 +00:00
parent 033129586e
commit a4ca0c72c2

View File

@@ -1673,11 +1673,6 @@ void openEffectMaker(const QString &filePath)
Utils::QtcProcess *qqemProcess = new Utils::QtcProcess();
qqemProcess->setEnvironment(env);
qqemProcess->setCommand({ effectMakerPath, arguments });
// workaround that effect maker can find the images QTBUG-113531
if (env.osType() == Utils::OsTypeMac)
qqemProcess->setWorkingDirectory(baseQtVersion->qmlPath().pathAppended("QtQuickEffectMaker"));
QObject::connect(qqemProcess, &Utils::QtcProcess::done, [qqemProcess]() {
qqemProcess->deleteLater();
});