pcbnew, plot footprint: fix typo that prevent ploting dimensions

Fixes #11860
https://gitlab.com/kicad/code/kicad/issues/11860
This commit is contained in:
jean-pierre charras 2022-06-20 17:17:19 +02:00
parent d19705ac8c
commit 9db907cc70
1 changed files with 5 additions and 5 deletions

View File

@ -573,11 +573,11 @@ void BRDITEMS_PLOTTER::PlotFootprintGraphicItems( const FOOTPRINT* aFootprint )
break;
}
case PCB_DIM_ALIGNED_T:
case PCB_DIM_CENTER_T:
case PCB_DIM_RADIAL_T:
case PCB_DIM_ORTHOGONAL_T:
case PCB_DIM_LEADER_T:
case PCB_FP_DIM_ALIGNED_T:
case PCB_FP_DIM_CENTER_T:
case PCB_FP_DIM_RADIAL_T:
case PCB_FP_DIM_ORTHOGONAL_T:
case PCB_FP_DIM_LEADER_T:
{
const PCB_DIMENSION_BASE* dimension = static_cast<const PCB_DIMENSION_BASE*>( item );