From 3ccdde8fdb9c92c671655184c5dc8666ee2ac8d4 Mon Sep 17 00:00:00 2001 From: James Crook Date: Fri, 3 Aug 2018 17:16:31 +0100 Subject: [PATCH] Bug 1912 - Play/Stop and Set Cursor no longer sets the cursor at the stopped play position --- src/Menus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Menus.cpp b/src/Menus.cpp index 815dfd274..fffaf2648 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -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. }