1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Fix bug in previous, so that quick play starts from the correct position again

This commit is contained in:
Paul Licameli 2016-04-30 22:46:51 -04:00
parent 8a97468e5c
commit 5c4fe3ca99

View File

@ -2255,8 +2255,10 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt)
}
}
if (evt.LeftDown())
if (evt.LeftDown()) {
HandleQPClick(evt, mousePosX);
HandleQPDrag(evt, mousePosX);
}
else if (evt.LeftIsDown())
HandleQPDrag(evt, mousePosX);
else if (evt.LeftUp())