Support dash-dot-dot line style in DXF.

Fixes KICAD-TY8.

(cherry picked from commit 91b7bc0843)
This commit is contained in:
Jeff Young
2025-08-03 13:31:14 +01:00
parent c0c8910207
commit 09cbdd8db7
+2
View File
@@ -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";