This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Lita.Cho
Recipients Lita.Cho, jesstess, ned.deily, terry.reedy
Date 2014-07-06.07:03:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404630230.39.0.587047331555.issue21597@psf.upfronthosting.co.za>
In-reply-to
Content
Hey Terry,

So the reason why the tearing is a lot slower in 06/09 patch is because the canvas is using the turtle.ScrolledCanvas widget. Everytime the window resizes, it is calling a callback to `onResize` -> `adjustScrolls` to update the scrollbars. When I comment out that binding in turtle.py (line 358) it still tears, but it snaps back a lot quicker.

The main widget is already a 2x2 grid (ScrolledCanvas). I tried just returning the ScrolledCanvas, but that didn't work either.

I will try to ask in stackoverflow tomorrow and seeing what they say!
History
Date User Action Args
2014-07-06 07:03:50Lita.Chosetrecipients: + Lita.Cho, terry.reedy, ned.deily, jesstess
2014-07-06 07:03:50Lita.Chosetmessageid: <1404630230.39.0.587047331555.issue21597@psf.upfronthosting.co.za>
2014-07-06 07:03:50Lita.Cholinkissue21597 messages
2014-07-06 07:03:49Lita.Chocreate