Commit aa04597a authored by Louis Philippe Gagnon's avatar Louis Philippe Gagnon Committed by Alexandre Julliard

While dragging, catch keyboard messages between WM_KEYFIRST and

WM_KEYLAST, not just WM_KEYFIRST.
parent 391466dd
......@@ -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
......
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