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

This commit is contained in:
Georg Brandl 2008-09-26 07:17:03 +00:00
parent 00d71436c7
commit 4235e6f111
2 changed files with 3 additions and 0 deletions

View File

@ -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:

View File

@ -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.