ole32: Convey the Alt button state to the drop target.

This commit is contained in:
Damjan Jovanovic 2015-07-04 15:36:29 +02:00 committed by Alexandre Julliard
parent 9cf835a947
commit 372b0e1e80
1 changed files with 3 additions and 0 deletions

View File

@ -2453,6 +2453,9 @@ static DWORD OLEDD_GetButtonState(void)
if ( (keyboardState[VK_CONTROL] & 0x80) !=0) if ( (keyboardState[VK_CONTROL] & 0x80) !=0)
keyMask |= MK_CONTROL; keyMask |= MK_CONTROL;
if ( (keyboardState[VK_MENU] & 0x80) !=0)
keyMask |= MK_ALT;
if ( (keyboardState[VK_LBUTTON] & 0x80) !=0) if ( (keyboardState[VK_LBUTTON] & 0x80) !=0)
keyMask |= MK_LBUTTON; keyMask |= MK_LBUTTON;