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

Merge pull request #18394 from peppy/editor-beat-divisor-on-mouse-down

Handle beat divisor input on mouse down, rather than mouse up
This commit is contained in:
Dan Balasescu 2022-05-24 19:06:14 +09:00 committed by GitHub
commit 25f35b3408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -453,6 +453,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
protected override bool OnMouseDown(MouseDownEvent e)
{
marker.Active = true;
handleMouseInput(e.ScreenSpaceMousePosition);
return base.OnMouseDown(e);
}