Commit 4235e6f1 authored by Georg Brandl's avatar Georg Brandl

#3968: fix missing update() call in end_fill().

parent 00d71436
...@@ -306,6 +306,7 @@ class RawPen: ...@@ -306,6 +306,7 @@ class RawPen:
{'fill': self._color, {'fill': self._color,
'smooth': smooth}) 'smooth': smooth})
self._items.append(item) self._items.append(item)
self._canvas.update()
self._path = [] self._path = []
self._filling = flag self._filling = flag
if flag: if flag:
......
...@@ -89,6 +89,8 @@ Core and builtins ...@@ -89,6 +89,8 @@ Core and builtins
Library Library
------- -------
- Issues #3968 and #3969: two minor turtle problems.
- Issue #3547: Fixed ctypes structures bitfields of varying integer - Issue #3547: Fixed ctypes structures bitfields of varying integer
sizes. sizes.
......
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