1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-09 16:41:14 +02:00

Bug 1912 - Play/Stop and Set Cursor no longer sets the cursor at the stopped play position

This commit is contained in:
James Crook 2018-08-03 17:16:31 +01:00
parent d7346751c3
commit 3ccdde8fdb

View File

@ -2933,7 +2933,7 @@ bool AudacityProject::DoPlayStopSelect(bool click, bool shift)
auto &selection = mViewInfo.selectedRegion;
// Test WasSpeedPlaying(), not IsSpeedPlaying()
// as we could be stopped now.
if (GetScrubber().WasSpeedPlaying())
if (click && GetScrubber().WasSpeedPlaying())
{
;// don't change the selection.
}