From 79443b7e59f1f867c571aec3c28fb267528e623f Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 10 May 2024 12:02:38 +0100 Subject: [PATCH] Update signals & measurements when netlist might have changed. Fixes https://gitlab.com/kicad/code/kicad/-/issues/17616 (cherry picked from commit 55b2c4dbf4ad65eb1dfe35c05fe5de1dd31f0975) --- eeschema/sim/simulator_frame.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eeschema/sim/simulator_frame.cpp b/eeschema/sim/simulator_frame.cpp index 8ce47ea092..651a6ac89a 100644 --- a/eeschema/sim/simulator_frame.cpp +++ b/eeschema/sim/simulator_frame.cpp @@ -440,6 +440,10 @@ void SIMULATOR_FRAME::StartSimulation() { m_ui->OnSimUpdate(); m_simulator->Run(); + + // Netlist from schematic may have changed; update signals list, measurements list, + // etc. + m_ui->OnPlotSettingsChanged(); } else {