1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Fix BeatDivisorControl allow to select value outside of VALID_DIVISORS

This commit is contained in:
Fuewburvpoa 2020-03-17 22:27:11 +02:00
parent 156a3db57d
commit bee8e22d18

View File

@ -279,6 +279,10 @@ namespace osu.Game.Screens.Edit.Compose.Components
handleMouseInput(e.ScreenSpaceMousePosition);
}
protected override void OnDragEnd(DragEndEvent e)
{
}
private void handleMouseInput(Vector2 screenSpaceMousePosition)
{
// copied from SliderBar so we can do custom spacing logic.