From 2afd752bbc87e6ebd225a32f38bc7bed2d5f89ef Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Wed, 13 Aug 2025 14:35:54 +0200 Subject: [PATCH] Fix my previous commit 20d8c9c7. --- pcbnew/pcbplot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/pcbplot.cpp b/pcbnew/pcbplot.cpp index c1c42d26d9..c05a81f117 100644 --- a/pcbnew/pcbplot.cpp +++ b/pcbnew/pcbplot.cpp @@ -490,11 +490,11 @@ bool PLOT_CONTROLLER::PlotLayer() else { LSEQ layerSequence( { ToLAYER_ID( GetLayer() ) } ); - PlotBoardLayers( m_board, m_plotter, layerSequence, GetPlotOptions() ); - PlotInteractiveLayer( m_board, m_plotter, GetPlotOptions() ); } + PlotInteractiveLayer( m_board, m_plotter, GetPlotOptions() ); + return true; }