Patch #812986: Update the canvas even if not tracing.

This commit is contained in:
Martin v. Löwis 2006-06-17 18:44:27 +00:00
parent 3f1f7bec74
commit 3798da0f92
2 changed files with 3 additions and 0 deletions

View 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

View File

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