diff options
-rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 0f0279bcb..fa37ac7fe 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -3003,7 +3003,7 @@ void Menu::Destroy() { void Menu::Show(Point pt, Window &w) { ::TrackPopupMenu(reinterpret_cast<HMENU>(mid), - 0, static_cast<int>(pt.x - 4), static_cast<int>(pt.y), 0, + TPM_RIGHTBUTTON, static_cast<int>(pt.x - 4), static_cast<int>(pt.y), 0, reinterpret_cast<HWND>(w.GetID()), NULL); Destroy(); } |