Fix height setting in Ellipse initialization

This commit is contained in:
James Norton 2019-03-07 10:44:43 -05:00
parent 03e832af45
commit 741ed593b2

View file

@ -321,7 +321,7 @@ class Ellipse(Circle):
def __init__(self, **kwargs):
Circle.__init__(self, **kwargs)
self.set_width(self.width, stretch=True)
self.set_height(self.width, stretch=True)
self.set_height(self.height, stretch=True)
class AnnularSector(Arc):