From 56b745895170d5e78931d771a1d9888ec8a85915 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Wed, 27 Jul 2022 18:04:48 +0200 Subject: [PATCH] Workaround to fix launch dxf2elmt binary from QET element editor menu on macOS --- sources/dxf/dxftoelmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/dxf/dxftoelmt.cpp b/sources/dxf/dxftoelmt.cpp index a90b6f081..370c3d574 100644 --- a/sources/dxf/dxftoelmt.cpp +++ b/sources/dxf/dxftoelmt.cpp @@ -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