Browse Source

pcbnew, plot footprint: fix typo that prevent ploting dimensions

Fixes #11860
https://gitlab.com/kicad/code/kicad/issues/11860
7.0
jean-pierre charras 4 years ago
parent
commit
9db907cc70
  1. 10
      pcbnew/plot_brditems_plotter.cpp

10
pcbnew/plot_brditems_plotter.cpp

@ -573,11 +573,11 @@ void BRDITEMS_PLOTTER::PlotFootprintGraphicItems( const FOOTPRINT* aFootprint )
break; 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 ); const PCB_DIMENSION_BASE* dimension = static_cast<const PCB_DIMENSION_BASE*>( item );

Loading…
Cancel
Save