This commit is contained in:
Wojtek Figat
2022-01-19 12:14:22 +01:00
parent 200ac18335
commit a8ff3da908
3 changed files with 23 additions and 13 deletions

View File

@@ -2286,12 +2286,12 @@ void LinuxPlatform::Tick()
xDndResult = DragDropEffect::None;
if (window->_dragOver)
{
window->OnDragEnter(&dropData, xDndPos, xDndResult);
window->OnDragOver(&dropData, xDndPos, xDndResult);
}
else
{
window->_dragOver = true;
window->OnDragOver(&dropData, xDndPos, xDndResult);
window->OnDragEnter(&dropData, xDndPos, xDndResult);
}
}
}