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.
This commit is contained in:
Ned Deily 2011-07-26 18:16:08 -07:00
parent d88131afd9
commit d8b1723965
2 changed files with 4 additions and 1 deletions

View File

@ -266,7 +266,7 @@ class IOBinding:
self.reset_undo() self.reset_undo()
self.set_filename(filename) self.set_filename(filename)
self.text.mark_set("insert", "1.0") self.text.mark_set("insert", "1.0")
self.text.see("insert") self.text.yview("insert")
self.updaterecentfileslist(filename) self.updaterecentfileslist(filename)
return True return True

View File

@ -277,6 +277,9 @@ Core and Builtins
Library Library
------- -------
- 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.
- Issue #12161: Cause StringIO.getvalue() to raise a ValueError when used on a - Issue #12161: Cause StringIO.getvalue() to raise a ValueError when used on a
closed StringIO instance. closed StringIO instance.