While dragging, catch keyboard messages between WM_KEYFIRST and
WM_KEYLAST, not just WM_KEYFIRST.
This commit is contained in:
parent
391466dd8b
commit
aa04597a91
|
@ -541,7 +541,7 @@ HRESULT WINAPI DoDragDrop (
|
|||
while (!trackerInfo.trackingDone && GetMessageA(&msg, 0, 0, 0) )
|
||||
{
|
||||
if ( (msg.message >= WM_KEYFIRST) &&
|
||||
(msg.message <= WM_KEYFIRST) )
|
||||
(msg.message <= WM_KEYLAST) )
|
||||
{
|
||||
/*
|
||||
* When keyboard messages are sent to windows on this thread, we
|
||||
|
|
Loading…
Reference in New Issue