1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:43:01 +08:00

Fix dragging backwards not deselecting pending selection

This commit is contained in:
Dean Herbert 2018-04-04 20:44:22 +09:00
parent b7325d73e8
commit 216c4629e0

View File

@ -69,6 +69,8 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Layers
{
if (mask.IsPresent && rect.Contains(mask.SelectionPoint))
mask.Select();
else
mask.Deselect();
}
}