Skip to content

Commit

Permalink
Merge branch 't513' into next. Incubates #513
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelDCurran committed Apr 6, 2015
2 parents a0d15ab + 115be89 commit 091a0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/winConsoleHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def consoleWinEventHook(handle,eventID,window,objectID,childID,threadID,timestam
consoleObject.event_textChange()
if eventID==winUser.EVENT_CONSOLE_UPDATE_SIMPLE:
ver=sys.getwindowsversion()
if ver.major>6 or (ver.major==6 and ver.minor>1):
if ver.major>6 or (ver.major==6 and ver.minor>=1):
return # #513: Win 7 and above receive wm_char for characters.
x=winUser.LOWORD(objectID)
y=winUser.HIWORD(objectID)
Expand Down

0 comments on commit 091a0e4

Please sign in to comment.