Skip to content

Commit

Permalink
Fixed touch capture not releasing when dragging between different lis…
Browse files Browse the repository at this point in the history
…t elements
  • Loading branch information
mikeoliphant committed Jul 14, 2024
1 parent d475477 commit daf9987
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions UILayout/LayoutElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -595,5 +595,10 @@ public override void HandleDragCancelled(object dropObject)
{
ListElement.ReleaseTouch();
}

public override void HandleDragCompleted(object dropObject)
{
ListElement.ReleaseTouch();
}
}
}

0 comments on commit daf9987

Please sign in to comment.