Add settings for plotting PDF property popups.

Fixes https://gitlab.com/kicad/code/kicad/issues/14450
This commit is contained in:
Jeff Young
2023-04-30 18:10:04 +01:00
parent 096af19d9a
commit 2f9889ff62
11 changed files with 437 additions and 319 deletions
+2 -2
View File
@@ -489,7 +489,7 @@ bool PLOT_CONTROLLER::PlotLayer()
// Fully delegated to the parent
PlotOneBoardLayer( m_board, m_plotter, ToLAYER_ID( GetLayer() ), GetPlotOptions() );
PlotInteractiveLayer( m_board, m_plotter );
PlotInteractiveLayer( m_board, m_plotter, GetPlotOptions() );
return true;
}
@@ -504,7 +504,7 @@ bool PLOT_CONTROLLER::PlotLayers( const LSEQ& aLayerSequence )
// Fully delegated to the parent
PlotBoardLayers( m_board, m_plotter, aLayerSequence, GetPlotOptions() );
PlotInteractiveLayer( m_board, m_plotter );
PlotInteractiveLayer( m_board, m_plotter, GetPlotOptions() );
return true;
}