Moved scrollbar tracking code to scroll.c.
Avoid unnecessary coordinates conversion in NC_HandleSysCommand.
diff --git a/controls/menu.c b/controls/menu.c
index 50abd2e..931d438 100644
--- a/controls/menu.c
+++ b/controls/menu.c
@@ -2944,6 +2944,10 @@
if (IsMenu(hMenu))
{
+ /* map point to parent client coordinates */
+ HWND parent = GetAncestor( hWnd, GA_PARENT );
+ if (parent != GetDesktopWindow()) ScreenToClient( parent, &pt );
+
MENU_InitTracking( hWnd, hMenu, FALSE, wFlags );
MENU_TrackMenu( hMenu, wFlags, pt.x, pt.y, hWnd, NULL );
MENU_ExitTracking(hWnd);