Commit 5cf7878f authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Merge 3.1

parents b938c8c2 f9439914
......@@ -304,9 +304,9 @@ class EditorWindow(object):
return "break"
def home_callback(self, event):
if (event.state & 12) != 0 and event.keysym == "Home":
# state&1==shift, state&4==control, state&8==alt
return # <Modifier-Home>; fall back to class binding
if (event.state & 4) != 0 and event.keysym == "Home":
# state&4==Control. If <Control-Home>, use the Tk binding.
return
if self.text.index("iomark") and \
self.text.compare("iomark", "<=", "insert lineend") and \
......
What's New in IDLE 3.1.4?
=========================
*Release date: XX-XXX-XX*
- <Home> toggle non-functional when NumLock set on Windows. Issue3851.
What's New in IDLE 3.1b1?
=========================
......
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