Fix typo in pad table

This commit is contained in:
Seth Hillbrand 2025-09-12 06:55:31 -07:00
parent c64f99c57a
commit 29025882fc

View File

@ -226,8 +226,8 @@ void DIALOG_FP_EDIT_PAD_TABLE::Populate()
m_grid->SetCellValue( row, COL_DRILL_Y, m_unitsProvider->StringFromValue( drill.y, true ) ); m_grid->SetCellValue( row, COL_DRILL_Y, m_unitsProvider->StringFromValue( drill.y, true ) );
} }
else else
m_grid->SetCellValue( row, COL_SIZE_X, m_unitsProvide
{ {
// For non-PTH pads, drill columns are not applicable.
m_grid->SetReadOnly( row, COL_DRILL_X, true ); m_grid->SetReadOnly( row, COL_DRILL_X, true );
m_grid->SetReadOnly( row, COL_DRILL_Y, true ); m_grid->SetReadOnly( row, COL_DRILL_Y, true );
} }