From 09cbdd8db777c28db5cc4148f93395bc9989ba47 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 2 Aug 2025 22:27:56 +0100 Subject: [PATCH] Support dash-dot-dot line style in DXF. Fixes KICAD-TY8. (cherry picked from commit 91b7bc08436959ea43f61b58a0df6e8fe1cc3d93) --- common/plotters/DXF_plotter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/plotters/DXF_plotter.cpp b/common/plotters/DXF_plotter.cpp index 6b8e17793a..ec6198f5f3 100644 --- a/common/plotters/DXF_plotter.cpp +++ b/common/plotters/DXF_plotter.cpp @@ -111,6 +111,8 @@ static const char* getDXFLineType( LINE_STYLE aType ) return "DOTTED"; case LINE_STYLE::DASHDOT: return "DASHDOT"; + case LINE_STYLE::DASHDOTDOT: + return "DIVIDE"; default: wxFAIL_MSG( "Unhandled LINE_STYLE" ); return "CONTINUOUS";