From 17b861260b0950b77a630a189781e45f2c6d40f9 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 25 Apr 2023 11:09:19 -0300 Subject: [PATCH] [v6/7 Schematic][Fixed] Text boxes mixed with common text - Not really important because they got correctly saved anyways --- kibot/kicad/v6_sch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/kicad/v6_sch.py b/kibot/kicad/v6_sch.py index 4999333e..4d7d1999 100644 --- a/kibot/kicad/v6_sch.py +++ b/kibot/kicad/v6_sch.py @@ -1983,7 +1983,7 @@ class SchematicV6(Schematic): elif e_type == 'image': self.bitmaps.append(SchematicBitmapV6.parse(e)) elif e_type == 'text_box': - self.texts.append(TextBox.parse(e, e_type)) + self.text_boxes.append(TextBox.parse(e, e_type)) elif e_type == 'text': self.texts.append(Text.parse(e, e_type)) elif e_type == 'label':