mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 04:01:54 +01:00
Fix error in playing from cursor, introduced at 4abc71c
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user