]> granicus.if.org Git - python/commitdiff
Patch #812986: Update the canvas even if not tracing.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 17 Jun 2006 18:44:27 +0000 (18:44 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 17 Jun 2006 18:44:27 +0000 (18:44 +0000)
Lib/lib-tk/turtle.py
Misc/NEWS

index d68e405cd6fc7cbdefe1bd068ed0c391fe2e825b..d186ac63125f67438651dcf448511931430fd28d 100644 (file)
@@ -634,6 +634,7 @@ class RawPen:
 
     def _draw_turtle(self, position=[]):
         if not self._tracing:
+            self._canvas.update()
             return
         if position == []:
             position = self._position
index 165048c1fefbd5422e32d451f01381696af2575d..7021236f9812102bbb6d4c77cabcce2a3d38cc56 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -163,6 +163,8 @@ Extension Modules
 Library
 -------
 
+- Patch #812986: Update turtle output even if not tracing.
+
 - Patch #1494750: Destroy master after deleting children in 
   Tkinter.BaseWidget.