mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
quashed another case of the 32-bit warning.
This commit is contained in:
parent
6797514557
commit
746096576b
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue