Skip to content

Commit

Permalink
Fix timeline not handling mouse down events
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed May 11, 2022
1 parent 396be1b commit 0b597e7
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 0b597e7

Please sign in to comment.