From 67eae77e9df0fcde27cc83d5fe0b847652d2ea76 Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Thu, 19 Jan 2023 10:09:40 -0500 Subject: [PATCH] PCB/SCH/3D: Implement 3D cross-probing from schematic Fixes: https://gitlab.com/kicad/code/kicad/-/issues/3859 --- pcbnew/cross-probing.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcbnew/cross-probing.cpp b/pcbnew/cross-probing.cpp index 4a6870fa10..d29ad605f6 100644 --- a/pcbnew/cross-probing.cpp +++ b/pcbnew/cross-probing.cpp @@ -624,6 +624,9 @@ void PCB_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail ) static_cast( &items ) ); } + // Update 3D viewer highlighting + Update3DView( false, GetPcbNewSettings()->m_Display.m_Live3DRefresh ); + m_probingSchToPcb = false; }