branch merge.

This commit is contained in:
Senthil Kumaran 2011-03-17 14:43:21 +08:00
commit 5a9a5080cf
2 changed files with 10 additions and 3 deletions

View File

@ -307,9 +307,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 \

View File

@ -1,3 +1,10 @@
What's New in IDLE 2.7.2?
=======================
*Release date: XX-XX-XXXX*
- <Home> toggle non-functional when NumLock set on Windows. Issue3851.
What's New in IDLE 2.7?
=======================