Commit 3798da0f authored by Martin v. Löwis's avatar Martin v. Löwis

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

parent 3f1f7bec
...@@ -634,6 +634,7 @@ class RawPen: ...@@ -634,6 +634,7 @@ class RawPen:
def _draw_turtle(self, position=[]): def _draw_turtle(self, position=[]):
if not self._tracing: if not self._tracing:
self._canvas.update()
return return
if position == []: if position == []:
position = self._position position = self._position
......
...@@ -163,6 +163,8 @@ Extension Modules ...@@ -163,6 +163,8 @@ Extension Modules
Library Library
------- -------
- Patch #812986: Update turtle output even if not tracing.
- Patch #1494750: Destroy master after deleting children in - Patch #1494750: Destroy master after deleting children in
Tkinter.BaseWidget. Tkinter.BaseWidget.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment