1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

Changed misleading terminology in scrubber...

... It was confusing that HasStartedScrubbing() could be true
while also not IsScrubbing()
This commit is contained in:
Paul Licameli
2018-07-29 14:11:17 -04:00
parent b33d3516f0
commit 5f27ae905c
8 changed files with 19 additions and 19 deletions

View File

@@ -1676,7 +1676,7 @@ void AudacityApp::OnKeyDown(wxKeyEvent &event)
auto project = ::GetActiveProject();
auto token = project->GetAudioIOToken();
auto &scrubber = project->GetScrubber();
auto scrubbing = scrubber.HasStartedScrubbing();
auto scrubbing = scrubber.HasMark();
if (scrubbing)
scrubber.Cancel();
if((token > 0 &&