]> granicus.if.org Git - python/commitdiff
#3968: fix missing update() call in end_fill().
authorGeorg Brandl <georg@python.org>
Fri, 26 Sep 2008 07:17:03 +0000 (07:17 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 26 Sep 2008 07:17:03 +0000 (07:17 +0000)
Lib/lib-tk/turtle.py
Misc/NEWS

index 6bc3760947be7727d13a71811f65836a7a5113a7..295f9f4fc6dbd12c363738a283c0707a0fd68e2d 100644 (file)
@@ -306,6 +306,7 @@ class RawPen:
                                             {'fill': self._color,
                                              'smooth': smooth})
                 self._items.append(item)
+                self._canvas.update()
         self._path = []
         self._filling = flag
         if flag:
index 5fcf45649c7d6febd70d6b69af1e0ce13fdc79df..87d19cb12896bf09b70693de165997deb0915571 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,8 @@ Core and builtins
 Library
 -------
 
+- Issues #3968 and #3969: two minor turtle problems.
+
 - Issue #3547: Fixed ctypes structures bitfields of varying integer
   sizes.