From 966dee67305c4f816bbb182ede88cc5d2e09df51 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sat, 10 Dec 2022 14:32:24 -0500 Subject: [PATCH] A screen must always be generated for a new sheet Fixes https://gitlab.com/kicad/code/kicad/-/issues/13104 --- eeschema/sch_plugins/altium/sch_altium_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp index d7637a10cf..6fd658a6cb 100644 --- a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp +++ b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp @@ -375,6 +375,7 @@ void SCH_ALTIUM_PLUGIN::ParseAltiumSch( const wxString& aFileName ) " Altium signal harness that got converted to a sheet." ), sheet->GetName() ); m_reporter->Report( msg ); + sheet->SetScreen( new SCH_SCREEN( m_schematic ) ); continue; }