Merge branch 'master' of github.com:skykooler/Lightningbeam

This commit is contained in:
Skyler Lehmkuhl 2012-01-20 12:25:06 -05:00
commit d6858e3ffe
1 changed files with 3 additions and 2 deletions

View File

@ -85,7 +85,8 @@ class WinMessageReflector(object):
try:
code = HIWORD(wParam)
id = LOWORD(wParam)
if id:
if id != 0:
if self != win_none_wrapper:
self._win_menu_command(id)
else:
name = win_command_map.get(code)