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:
parent
8a97468e5c
commit
5c4fe3ca99
@ -2255,8 +2255,10 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (evt.LeftDown())
|
if (evt.LeftDown()) {
|
||||||
HandleQPClick(evt, mousePosX);
|
HandleQPClick(evt, mousePosX);
|
||||||
|
HandleQPDrag(evt, mousePosX);
|
||||||
|
}
|
||||||
else if (evt.LeftIsDown())
|
else if (evt.LeftIsDown())
|
||||||
HandleQPDrag(evt, mousePosX);
|
HandleQPDrag(evt, mousePosX);
|
||||||
else if (evt.LeftUp())
|
else if (evt.LeftUp())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user