From df52665ae50f908ede13eada259a2e77a0585fe1 Mon Sep 17 00:00:00 2001 From: Furgo <148809153+furgo16@users.noreply.github.com> Date: Thu, 10 Jul 2025 13:25:58 +0200 Subject: [PATCH] Import: DXF, fix typo in individual shapes import mode --- src/Mod/Import/App/dxf/ImpExpDxf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Import/App/dxf/ImpExpDxf.cpp b/src/Mod/Import/App/dxf/ImpExpDxf.cpp index 104202c564..62ab50ca6c 100644 --- a/src/Mod/Import/App/dxf/ImpExpDxf.cpp +++ b/src/Mod/Import/App/dxf/ImpExpDxf.cpp @@ -957,7 +957,7 @@ void ImpExpDxfRead::OnReadLine(const Base::Vector3d& start, case ImportMode::FusedShapes: // For these modes, we want a generic Part::Feature wrapping the TopoDS_Shape. // PrimitiveType::None will lead to a generic Part::Feature in AddGeometry. - builder.type = GeometryBuilder::PrimitiveType::Line; + builder.type = GeometryBuilder::PrimitiveType::None; break; }