Fix building colors.

This commit is contained in:
Sergey Vartanov 2022-02-04 21:54:41 +03:00
parent 85477027a2
commit 6f01024533

View file

@ -107,8 +107,8 @@ class Building(Figure):
"""Draw simple building shape."""
path: Path = Path(
d=self.get_path(flinger),
stroke=self.stroke,
fill=self.fill,
stroke=self.stroke.hex,
fill=self.fill.hex,
stroke_linejoin="round",
)
svg.add(path)