mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
fix: Set windows drop handler effect to copy
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user