Commit 372b0e1e authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

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

parent 9cf835a9
...@@ -2453,6 +2453,9 @@ static DWORD OLEDD_GetButtonState(void) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment