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

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18205
This commit is contained in:
Jeff Young 2024-06-14 16:30:32 +01:00
parent 4eb048bba2
commit c633ac26eb
1 changed files with 3 additions and 0 deletions

View File

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