Skip to content

Commit cbd1f77

Browse files
committed
fix(footprints): use actual library in qualified footprint names
Use each artifact's parsed footprint library when building qualified_name so symbol Footprint references match generated Package_BGA/Package_DFN_QFN libraries instead of always using the namespace.
1 parent 1e33ed9 commit cbd1f77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/kicad_generator/footprints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class FootprintArtifact:
2828

2929
@property
3030
def qualified_name(self) -> str:
31-
return f"{self.namespace}:{self.name}"
31+
return f"{self.library}:{self.name}"
3232

3333

3434
@dataclass(frozen=True)

0 commit comments

Comments
 (0)