From 94ba1bcb87493d54cfc90225e2ce8781500304d5 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Mon, 8 Apr 2019 21:36:04 -0400 Subject: [PATCH] Update connection graph before sending netlist to pcbnew Fixes: lp:1823449 * https://bugs.launchpad.net/kicad/+bug/1823449 --- eeschema/cross-probing.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eeschema/cross-probing.cpp b/eeschema/cross-probing.cpp index e6410b7a62..21daa41c29 100644 --- a/eeschema/cross-probing.cpp +++ b/eeschema/cross-probing.cpp @@ -279,6 +279,9 @@ void SCH_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail ) } { + // Ensure netlist is up to date + RecalculateConnections(); + NETLIST_OBJECT_LIST* net_atoms = BuildNetListBase(); NETLIST_EXPORTER_KICAD exporter( this, net_atoms, g_ConnectionGraph ); STRING_FORMATTER formatter;