diff --git a/masque/shapes/path.py b/masque/shapes/path.py index 542cf11..3df55f4 100644 --- a/masque/shapes/path.py +++ b/masque/shapes/path.py @@ -26,7 +26,7 @@ class PathCap(Enum): def __lt__(self, other: Any) -> bool: if self.__class__ is not other.__class__: return self.__class__.__name__ < other.__class__.__name__ - # Order: Flush, Square, Round, SquareCustom, Circle + # Order: Flush, Square, Circle, SquareCustom order = { PathCap.Flush: 0, PathCap.Square: 1,