mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-25 06:01:14 +01:00
Fix bug in previous, so that quick play starts from the correct position again
This commit is contained in:
@@ -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())
|
||||||
|
|||||||
Reference in New Issue
Block a user