Various improvements and fixes

This commit is contained in:
Wojtek Figat
2023-02-09 20:05:46 +01:00
parent 12cb8fd59d
commit 82823d6945
5 changed files with 26 additions and 6 deletions

View File

@@ -114,10 +114,8 @@ namespace FlaxEditor.Windows.Assets
public override DragDropEffect OnDragMove(ref Float2 location, DragData data)
{
var result = base.OnDragMove(ref location, data);
if (result == DragDropEffect.None)
{
if (result == DragDropEffect.None && _dragHandlers != null)
result = _dragHandlers.Effect;
}
return result;
}