Kaydet (Commit) f94cadf4 authored tarafından Jack Jansen's avatar Jack Jansen

MenuID's are signed.

üst fe9acdea
......@@ -190,6 +190,8 @@ class Application(FrameWork.Application):
self.checkmenus(None)
result = MenuToolbox.MenuSelect(where)
id = (result>>16) & 0xffff # Hi word
if id >= 0x8000:
id = -0x10000 + id
item = result & 0xffff # Lo word
self.do_rawmenu(id, item, window, event)
......
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