Kaydet (Commit) f25e3d52 authored tarafından Ned Deily's avatar Ned Deily

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.
üst 1299a8f3
......@@ -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
......
......@@ -37,6 +37,9 @@ Core and Builtins
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 #12576: Fix urlopen behavior on sites which do not send (or obfuscates)
Connection:close header.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment