diff options
author | Wulian <xiguawulian@gmail.com> | 2024-10-17 15:23:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 15:23:37 (GMT) |
commit | c124577ebe915a00de4033c0f7fa7c47621d79e0 (patch) | |
tree | 5a5dd5cca670a96bb15ac33952420340572da890 /Misc/NEWS.d | |
parent | 528bbab96feadbfabb798547e5bb2ad52070fb73 (diff) | |
download | cpython-c124577ebe915a00de4033c0f7fa7c47621d79e0.zip cpython-c124577ebe915a00de4033c0f7fa7c47621d79e0.tar.gz cpython-c124577ebe915a00de4033c0f7fa7c47621d79e0.tar.bz2 |
gh-123370: Fix the canvas not clearing after running turtledemo.clock (#123457)
Rewriting the day and date every tick somehow prevented them from being removed either by clicking STOP or loading another example. The solution is to rewrite them only when they change.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-08-28-19-27-35.gh-issue-123370.SPZ9Ux.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-08-28-19-27-35.gh-issue-123370.SPZ9Ux.rst b/Misc/NEWS.d/next/Library/2024-08-28-19-27-35.gh-issue-123370.SPZ9Ux.rst new file mode 100644 index 0000000..1fd5cc5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-08-28-19-27-35.gh-issue-123370.SPZ9Ux.rst @@ -0,0 +1 @@ +Fix the canvas not clearing after running turtledemo clock. |