mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-28 22:28:44 +02:00
Fix error in playing from cursor, introduced at 4abc71c
This commit is contained in:
parent
66a0a93e17
commit
577fdb200f
@ -1553,7 +1553,7 @@ void ProjectWindow::TP_DisplaySelection()
|
||||
double audioTime;
|
||||
auto &playRegion = ViewInfo::Get( project ).playRegion;
|
||||
|
||||
if (!gAudioIO->IsBusy() && playRegion.Locked())
|
||||
if (!gAudioIO->IsBusy() && !playRegion.Locked())
|
||||
ruler.SetPlayRegion( selectedRegion.t0(), selectedRegion.t1() );
|
||||
else
|
||||
// Cause ruler redraw anyway, because we may be zooming or scrolling
|
||||
|
Loading…
x
Reference in New Issue
Block a user