Commit 6ee9a5e7 authored by Francis Beaudet's avatar Francis Beaudet Committed by Alexandre Julliard

Fixed a little Drag and Drop bug.

parent 22a7d452
......@@ -1499,6 +1499,12 @@ static void OLEDD_TrackMouseMove(
hwndNewTarget = WindowFromPoint(mousePos);
/*
* Every time, we re-initialize the effects passed to the
* IDropTarget to the effects allowed by the source.
*/
*trackerInfo->pdwEffect = trackerInfo->dwOKEffect;
/*
* If we are hovering over the same target as before, send the
* DragOver notification
*/
......@@ -1521,7 +1527,7 @@ static void OLEDD_TrackMouseMove(
trackerInfo->pdwEffect);
}
else
{
{
DropTargetNode* newDropTargetNode = 0;
/*
......
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