Fix drag box being positioned incorrectly for 1 frame

This commit is contained in:
smoogipoo
2019-10-24 17:22:14 +09:00
parent fb88001c0e
commit 7a71352684
2 changed files with 4 additions and 1 deletions

View File

@ -127,7 +127,10 @@ namespace osu.Game.Screens.Edit.Compose.Components
protected override bool OnDragStart(DragStartEvent e)
{
if (!beginSelectionMovement())
{
dragBox.UpdateDrag(e);
dragBox.FadeIn(250, Easing.OutQuint);
}
return true;
}