mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-14 14:39:35 +00:00
PCB_IO_KICAD_SEXPR::formatTeardropParameters(): fix missing parenthesis
Fortunately, it did not break loading .kicad_pcb files Fixes https://gitlab.com/kicad/code/kicad/-/issues/19964
This commit is contained in:
parent
744c296f14
commit
df8f6f5cc0
@ -746,7 +746,7 @@ void PCB_IO_KICAD_SEXPR::formatTeardropParameters( const TEARDROP_PARAMETERS& td
|
||||
|
||||
KICAD_FORMAT::FormatBool( m_out, "curved_edges", tdParams.m_CurvedEdges );
|
||||
|
||||
m_out->Print( "filter_ratio %s )",
|
||||
m_out->Print( "(filter_ratio %s)",
|
||||
FormatDouble2Str( tdParams.m_WidthtoSizeFilterRatio ).c_str() );
|
||||
|
||||
KICAD_FORMAT::FormatBool( m_out, "enabled", tdParams.m_Enabled );
|
||||
|
Loading…
Reference in New Issue
Block a user