From 4235e6f1117e6b35d183bf46487261d762486b1a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 26 Sep 2008 07:17:03 +0000 Subject: [PATCH] #3968: fix missing update() call in end_fill(). --- Lib/lib-tk/turtle.py | 1 + Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index 6bc3760947b..295f9f4fc6d 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -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: diff --git a/Misc/NEWS b/Misc/NEWS index 5fcf45649c7..87d19cb1289 100644 --- 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.