Skip to content

Commit

Permalink
Merge pull request ppy#18219 from frenzibyte/fix-timeline-breakage
Browse files Browse the repository at this point in the history
Fix timeline not handling mouse down events
  • Loading branch information
peppy authored May 11, 2022
2 parents 396be1b + 0b597e7 commit 55b9d66
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,9 @@ private void scrollToTrackTime()
protected override bool OnMouseDown(MouseDownEvent e)
{
if (base.OnMouseDown(e))
{
beginUserDrag();
return true;
}

return false;
return true;
}

protected override void OnMouseUp(MouseUpEvent e)
Expand Down

0 comments on commit 55b9d66

Please sign in to comment.