Pcbnew: Increase board thickness limit from 3mm to 10mm

This commit is contained in:
unknown 2015-06-14 20:18:34 +02:00 committed by jean-pierre charras
parent dc9ebf30e5
commit c70f4a0706
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ void DIALOG_LAYERS_SETUP::OnOkButtonClick( wxCommandEvent& event )
// Clamp the value between reasonable values // Clamp the value between reasonable values
thickness = Clamp( Millimeter2iu( 0.1 ), thickness, Millimeter2iu( 3.0 ) ); thickness = Clamp( Millimeter2iu( 0.1 ), thickness, Millimeter2iu( 10.0 ) );
m_pcb->GetDesignSettings().SetBoardThickness( thickness ); m_pcb->GetDesignSettings().SetBoardThickness( thickness );
EndModal( wxID_OK ); EndModal( wxID_OK );