[Schematic v6][Fixed] Autoplace fields could be lost in variants.
This commit is contained in:
parent
7400b2f990
commit
d28ecfd8c4
|
|
@ -60,8 +60,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
(#289 #290)
|
(#289 #290)
|
||||||
- KiCad 5 "assert "lower <= upper" failed in Clamp()" (#304)
|
- KiCad 5 "assert "lower <= upper" failed in Clamp()" (#304)
|
||||||
- Missing XYRS information for components with multiple units (#306)
|
- Missing XYRS information for components with multiple units (#306)
|
||||||
- Schematic v6: Problems when creating a variant of a sub-sheet that was edited
|
- Schematic v6:
|
||||||
as a standalone sheet (#307)
|
- Problems when creating a variant of a sub-sheet that was edited as a
|
||||||
|
standalone sheet (#307)
|
||||||
|
- Autoplace fields could be lost in variants.
|
||||||
- iBoM: Name displayed in the HTML when using filters and/or variants.
|
- iBoM: Name displayed in the HTML when using filters and/or variants.
|
||||||
- Position: Components wrongly separated by side when the side column wasn't
|
- Position: Components wrongly separated by side when the side column wasn't
|
||||||
the last column (#313)
|
the last column (#313)
|
||||||
|
|
|
||||||
|
|
@ -1129,7 +1129,7 @@ class SchematicComponentV6(SchematicComponent):
|
||||||
if self.convert is not None:
|
if self.convert is not None:
|
||||||
data.append(_symbol('convert', [self.convert]))
|
data.append(_symbol('convert', [self.convert]))
|
||||||
data.append(Sep())
|
data.append(Sep())
|
||||||
if self.in_bom or self.on_board:
|
if self.in_bom or self.on_board or self.fields_autoplaced:
|
||||||
if self.in_bom:
|
if self.in_bom:
|
||||||
data.append(_symbol('in_bom', [Symbol('yes')]))
|
data.append(_symbol('in_bom', [Symbol('yes')]))
|
||||||
if self.on_board:
|
if self.on_board:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue