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
1 changed files with 4 additions and 0 deletions

View File

@ -279,6 +279,10 @@ protected override void OnDrag(DragEvent e)
handleMouseInput(e.ScreenSpaceMousePosition);
}
protected override void OnDragEnd(DragEndEvent e)
{
}
private void handleMouseInput(Vector2 screenSpaceMousePosition)
{
// copied from SliderBar so we can do custom spacing logic.