From efc75047c1add76390c816d591bd93ea4ba98723 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 23 Jul 2022 20:16:08 +0100 Subject: [PATCH] Pay attention to units for page frames. Fixes https://gitlab.com/kicad/code/kicad/issues/11408 (cherry picked from commit 404015b0a5d3cc0079d5fec99cbed000629c45aa) --- eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp b/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp index a500c4d569..63f330b70d 100644 --- a/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp +++ b/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp @@ -1744,6 +1744,7 @@ bool SCH_EAGLE_PLUGIN::loadSymbol( wxXmlNode* aSymbolNode, std::unique_ptrSetParent( aSymbol.get() ); + item->SetUnit( aGateNumber ); aSymbol->AddDrawItem( item ); } }