From: Julian Smart Date: Tue, 10 Apr 2001 15:04:41 +0000 (+0000) Subject: Corrections X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0c96db12c4e325093c4962aab9c51cc128cd7709 Corrections git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/dragimag.cpp b/src/msw/dragimag.cpp index acffef371a..10cedac42b 100644 --- a/src/msw/dragimag.cpp +++ b/src/msw/dragimag.cpp @@ -361,7 +361,7 @@ bool wxDragImage::Move(const wxPoint& pt) // These are in window, not client coordinates. // So need to convert to client coordinates. wxPoint pt2(pt); - if (m_window) + if (m_window && !m_fullScreen) { RECT rect; rect.left = 0; rect.top = 0; @@ -379,7 +379,7 @@ bool wxDragImage::Move(const wxPoint& pt) bool ret = (ImageList_DragMove( pt2.x, pt2.y ) != 0); - m_position = pt; + m_position = pt2; return ret; }