diff --git a/main/gui/source/window/win_window.cpp b/main/gui/source/window/win_window.cpp index 6813df81d..8f9304222 100644 --- a/main/gui/source/window/win_window.cpp +++ b/main/gui/source/window/win_window.cpp @@ -332,7 +332,7 @@ namespace hex { { EventFileDragged::post(true); - *pdwEffect = DROPEFFECT_NONE; + *pdwEffect = DROPEFFECT_COPY; return S_OK; } @@ -341,7 +341,7 @@ namespace hex { POINTL, DWORD *pdwEffect) override { - *pdwEffect = DROPEFFECT_NONE; + *pdwEffect = DROPEFFECT_COPY; return S_OK; } @@ -377,7 +377,7 @@ namespace hex { EventFileDragged::post(false); - *pdwEffect &= DROPEFFECT_NONE; + *pdwEffect &= DROPEFFECT_COPY; return S_OK; } };