We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c6272 commit 07a3d20Copy full SHA for 07a3d20
InteractiveHtmlBom/ecad/fusion_eagle.py
@@ -800,7 +800,7 @@ def _parse(self, brdfile):
800
'value'],
801
footprint=el.attrib['package'],
802
layer=layer,
803
- attr=None,
+ attr=None if populate else 'Virtual',
804
extra_fields=extra_fields)
805
806
# For component, get footprint data
@@ -852,8 +852,7 @@ def _parse(self, brdfile):
852
populate)
853
self._element_refdes_to_silk(el, package)
854
855
- if populate:
856
- self.components.append(comp)
+ self.components.append(comp)
857
858
# Edges & silkscreen (independent of elements)
859
for el in plain.iter():
0 commit comments