Commit af81c2e8 authored by Raymond Hettinger's avatar Raymond Hettinger

SF bug #685773: 2 (more) bugs in turtle

The docs recommend filling by fill(1), drawing commands, fill(0).
However, the filling did not actually take place until the next
draw command.  Fixed by issuing a null draw command at the end
of the fill method.
parent 1a44448b
......@@ -149,6 +149,7 @@ class RawPen:
self._filling = flag
if flag:
self._path.append(self._position)
self.forward(0)
def circle(self, radius, extent=None):
if extent is None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment