mirror of
https://github.com/reactos/reactos
synced 2025-10-06 16:32:42 +02:00
[NtUser]
- Fix mouse move auto selecting while tracking popup menu. See CORE-2338. svn path=/trunk/; revision=72517
This commit is contained in:
@@ -3471,7 +3471,15 @@ static BOOL FASTCALL MENU_MouseMove(MTRACKER *pmt, PMENU PtMenu, UINT Flags)
|
||||
if ( PtMenu )
|
||||
{
|
||||
if (IS_SYSTEM_MENU(PtMenu))
|
||||
{
|
||||
Index = 0;
|
||||
//// ReactOS only HACK: CORE-2338
|
||||
// Windows tracks mouse moves to the system menu but does not open it.
|
||||
// Only keyboard tracking can do that.
|
||||
//
|
||||
TRACE("SystemMenu\n");
|
||||
return TRUE; // Stay inside the Loop!
|
||||
}
|
||||
else
|
||||
MENU_FindItemByCoords( PtMenu, pmt->Pt, &Index );
|
||||
}
|
||||
|
Reference in New Issue
Block a user