| ... | ... |
@@ -622,7 +622,7 @@ class XDotAttrParser: |
| 622 | 622 |
def handle_text(self, x, y, j, w, t): |
| 623 | 623 |
self.shapes.append(TextShape(self.pen, x, y, j, w, t)) |
| 624 | 624 |
|
| 625 |
- def handle_ecllipse(self, x0, y0, w, h): |
|
| 625 |
+ def handle_ellipse(self, x0, y0, w, h, filled=False): |
|
| 626 | 626 |
if filled: |
| 627 | 627 |
# xdot uses this to mean "draw a filled shape with an outline" |
| 628 | 628 |
self.shapes.append(EllipseShape(self.pen, x0, y0, w, h, filled=True)) |