Skip to content

Commit

Permalink
Fixes the check that the full clip is selected
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Sep 25, 2023
1 parent e3d5fcb commit 12bbd5c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,8 @@ SelectedIntervalOfFocusedTrack(AudacityProject &project)
return interval->Start() == viewInfo.selectedRegion.t0() &&
interval->End() == viewInfo.selectedRegion.t1();
});
if(it != ChannelGroup::IntervalIterator<WaveTrack::Interval> { })

if(it != intervals.end())
return { pWaveTrack, it };
}
}
Expand Down

0 comments on commit 12bbd5c

Please sign in to comment.