ole32: Convey the Alt button state to the drop target.
This commit is contained in:
parent
9cf835a947
commit
372b0e1e80
|
@ -2453,6 +2453,9 @@ static DWORD OLEDD_GetButtonState(void)
|
|||
if ( (keyboardState[VK_CONTROL] & 0x80) !=0)
|
||||
keyMask |= MK_CONTROL;
|
||||
|
||||
if ( (keyboardState[VK_MENU] & 0x80) !=0)
|
||||
keyMask |= MK_ALT;
|
||||
|
||||
if ( (keyboardState[VK_LBUTTON] & 0x80) !=0)
|
||||
keyMask |= MK_LBUTTON;
|
||||
|
||||
|
|
Loading…
Reference in New Issue