Browse Source

Don't lose value of cursor checkboxes when running sim.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18205
fusion360
Jeff Young 1 year ago
parent
commit
c633ac26eb
  1. 3
      eeschema/sim/simulator_frame_ui.cpp

3
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 ) )

Loading…
Cancel
Save