From: Guido van Rossum Date: Fri, 9 May 1997 03:19:29 +0000 (+0000) Subject: Scroll to top of info window when done. X-Git-Tag: v1.5a1~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29f6533c7ff5082968445a3ad640ff55af7a4802;p=python Scroll to top of info window when done. --- diff --git a/Tools/webchecker/wcgui.py b/Tools/webchecker/wcgui.py index ae087349bc..10c77d014d 100755 --- a/Tools/webchecker/wcgui.py +++ b/Tools/webchecker/wcgui.py @@ -264,6 +264,7 @@ class CheckerWindow(webchecker.Checker): if rawlink != url: d.put(" (%s)" % rawlink) d.put("\n") + d.text.yview("1.0") def setbad(self, url, msg): webchecker.Checker.setbad(self, url, msg)