1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Fix timeline not handling mouse down events

This commit is contained in:
Salman Ahmed 2022-05-11 09:39:27 +03:00
parent 396be1bf18
commit 0b597e712e

View File

@ -270,12 +270,9 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
protected override bool OnMouseDown(MouseDownEvent e) protected override bool OnMouseDown(MouseDownEvent e)
{ {
if (base.OnMouseDown(e)) if (base.OnMouseDown(e))
{
beginUserDrag(); beginUserDrag();
return true;
}
return false; return true;
} }
protected override void OnMouseUp(MouseUpEvent e) protected override void OnMouseUp(MouseUpEvent e)