From e02ad585a9984998008e159da2a39cb505b5c951 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Thu, 10 Oct 2024 11:42:37 +0200 Subject: [PATCH] Minor --- sources/dxf/dxftoelmt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/dxf/dxftoelmt.cpp b/sources/dxf/dxftoelmt.cpp index 895690587..8e27fb1a3 100644 --- a/sources/dxf/dxftoelmt.cpp +++ b/sources/dxf/dxftoelmt.cpp @@ -54,6 +54,7 @@ QByteArray dxfToElmt(const QString &file_path) if (error_output.length() > 0) { // inform the user about log-output via QMessageBox QMessageBox msgBox; + msgBox.setIcon(QMessageBox::Critical); msgBox.setText(QObject::tr ("Dxf2elmt: \nError: Make sure the file is a valid .dxf file")); msgBox.setInformativeText (QObject::tr("See details here:")); msgBox.setDetailedText(error_output);