Workaround to fix launch dxf2elmt binary from QET element editor menu on macOS

This commit is contained in:
Laurent Trinques
2022-07-27 18:04:48 +02:00
parent 74a187e659
commit 56b7458951

View File

@@ -77,7 +77,7 @@ QString dxf2ElmtBinaryPath()
#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64)
return dxf2ElmtDirPath() + QStringLiteral("/dxf2elmt.exe");
#elif defined(Q_OS_MAC)
return dxf2ElmtDirPath() + QStringLiteral("/dxf2elmt");
return dxf2ElmtDirPath() + QStringLiteral("/./dxf2elmt");
#else
return dxf2ElmtDirPath() + QStringLiteral("/dxf2elmt");
#endif