From c633ac26eb31cd31125faae2c25fb818568308fd Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 14 Jun 2024 16:30:32 +0100 Subject: [PATCH] Don't lose value of cursor checkboxes when running sim. Fixes https://gitlab.com/kicad/code/kicad/-/issues/18205 --- eeschema/sim/simulator_frame_ui.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eeschema/sim/simulator_frame_ui.cpp b/eeschema/sim/simulator_frame_ui.cpp index 33e852af14..e9d15e0812 100644 --- a/eeschema/sim/simulator_frame_ui.cpp +++ b/eeschema/sim/simulator_frame_ui.cpp @@ -2701,7 +2701,10 @@ void SIMULATOR_FRAME_UI::OnSimRefresh( bool aFinal ) wxString msg; if( aFinal ) + { applyUserDefinedSignals(); + updateSignalsGrid(); + } // If there are any signals plotted, update them if( SIM_TAB::IsPlottable( simType ) )