Fix timeline potentially scrolling at extents while not dragging

This commit is contained in:
Salman Ahmed 2022-11-18 09:40:08 +03:00
parent 1ff1738988
commit 90cd386323

View File

@ -436,8 +436,11 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
base.OnDragEnd(e);
OnDragHandled?.Invoke(null);
dragOperation?.Cancel();
dragOperation = null;
changeHandler?.EndChange();
OnDragHandled?.Invoke(null);
}
}