Commit ea0b2a40 authored by Jack Jansen's avatar Jack Jansen

quashed another case of the 32-bit warning.

parent 9b2bcf42
...@@ -645,7 +645,7 @@ class PopupMenu(Menu): ...@@ -645,7 +645,7 @@ class PopupMenu(Menu):
reply = self.menu.PopUpMenuSelect(x, y, default) reply = self.menu.PopUpMenuSelect(x, y, default)
if not reply: if not reply:
return return
id = (reply & 0xffff0000) >> 16 id = (reply >> 16) & 0xffff
item = reply & 0xffff item = reply & 0xffff
if not window: if not window:
wid = MyFrontWindow() wid = MyFrontWindow()
......
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