diff options
author | Ned Deily <nad@acm.org> | 2011-07-27 01:17:33 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-07-27 01:17:33 (GMT) |
commit | f25e3d527820489cf83c80d7e497da6ee0a75da3 (patch) | |
tree | 9b49dcea856634dd5c994766aa267bd2c2596381 /Lib/idlelib | |
parent | 1299a8f3b25a543c79f79e6edaebb033018029ca (diff) | |
download | cpython-f25e3d527820489cf83c80d7e497da6ee0a75da3.zip cpython-f25e3d527820489cf83c80d7e497da6ee0a75da3.tar.gz cpython-f25e3d527820489cf83c80d7e497da6ee0a75da3.tar.bz2 |
Issue #12590: IDLE editor window now always displays the first line
when opening a long file. With Tk 8.5, the first line was hidden.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/IOBinding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index 3f5d556..d20c708 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py @@ -232,7 +232,7 @@ class IOBinding: # before being able to execute the code self.set_saved(False) self.text.mark_set("insert", "1.0") - self.text.see("insert") + self.text.yview("insert") self.updaterecentfileslist(filename) return True |