fix: Fixed error popup on macos on file save

This commit is contained in:
Yaroslav Yashin 2025-03-31 16:10:08 +02:00
parent 066158e669
commit 1efa7e681a

View file

@ -58,8 +58,10 @@ void SystemController::saveFile(const QString &fileName, const QString &data)
const auto url = fi.absoluteDir().absolutePath();
#endif
#ifndef MACOS_NE
QDesktopServices::openUrl(url);
#endif
#endif
}
bool SystemController::readFile(const QString &fileName, QByteArray &data)