From c2e0c585f8f6300ddf7ad614402cf87118557585 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Tue, 16 Aug 2022 23:21:43 -0400 Subject: [PATCH] Add missing pass of uuid for 2pt polylines Stops file churn --- eeschema/sch_plugins/kicad/sch_sexpr_parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/sch_plugins/kicad/sch_sexpr_parser.cpp b/eeschema/sch_plugins/kicad/sch_sexpr_parser.cpp index b65cd41b53..c4629979a3 100644 --- a/eeschema/sch_plugins/kicad/sch_sexpr_parser.cpp +++ b/eeschema/sch_plugins/kicad/sch_sexpr_parser.cpp @@ -2314,6 +2314,7 @@ void SCH_SEXPR_PARSER::ParseSchematic( SCH_SHEET* aSheet, bool aIsCopyableOnly, line->SetStartPoint( outline.CPoint(0) ); line->SetEndPoint( outline.CPoint(1) ); line->SetStroke( poly->GetStroke() ); + const_cast( line->m_Uuid ) = poly->m_Uuid; screen->Append( line );