winemac.drv: Translate the WM_DROPFILES point into client coordinates whenever possible.
This is winemac.drv port of 846a8f6c8d
.
Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com>
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
557c4334a5
commit
ea287aefed
|
@ -455,9 +455,10 @@ BOOL query_drag_drop(macdrv_query* query)
|
||||||
{
|
{
|
||||||
dropfiles->pt.x = pt.x;
|
dropfiles->pt.x = pt.x;
|
||||||
dropfiles->pt.y = pt.y;
|
dropfiles->pt.y = pt.y;
|
||||||
dropfiles->fNC = FALSE;
|
dropfiles->fNC = !ScreenToClient(hwnd, &dropfiles->pt);
|
||||||
|
|
||||||
TRACE("sending WM_DROPFILES: hwnd %p pt %s %s\n", hwnd, wine_dbgstr_point(&pt),
|
TRACE("sending WM_DROPFILES: hwnd %p nc %d pt %s %s\n", hwnd,
|
||||||
|
dropfiles->fNC, wine_dbgstr_point(&dropfiles->pt),
|
||||||
debugstr_w((WCHAR*)((char*)dropfiles + dropfiles->pFiles)));
|
debugstr_w((WCHAR*)((char*)dropfiles + dropfiles->pFiles)));
|
||||||
|
|
||||||
GlobalUnlock(hdrop);
|
GlobalUnlock(hdrop);
|
||||||
|
|
Loading…
Reference in New Issue