mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 09:09:47 +02:00
Bug1052 again: Push play button and change its image as soon as scrub click.
This commit is contained in:
commit
880241dd88
@ -155,6 +155,7 @@ void Scrubber::MarkScrubStart(
|
||||
mScrubStartClockTimeMillis = ::wxGetLocalTimeMillis();
|
||||
|
||||
ControlToolBar * const ctb = mProject->GetControlToolBar();
|
||||
ctb->SetPlay(true, ControlToolBar::PlayAppearance::Scrub);
|
||||
ctb->UpdateStatusBar(mProject);
|
||||
mProject->GetTrackPanel()->HandleCursor(event);
|
||||
}
|
||||
@ -312,17 +313,18 @@ void Scrubber::StopScrubbing()
|
||||
{
|
||||
mScrubStartPosition = -1;
|
||||
mSmoothScrollingScrub = false;
|
||||
const auto ctb = mProject->GetControlToolBar();
|
||||
|
||||
if (IsScrubbing())
|
||||
{
|
||||
if (gAudioIO->IsBusy()) {
|
||||
ControlToolBar *const ctb = mProject->GetControlToolBar();
|
||||
ctb->StopPlaying();
|
||||
}
|
||||
return;
|
||||
}
|
||||
else
|
||||
return;
|
||||
else {
|
||||
// Didn't really play, but did change button apperance
|
||||
ctb->SetPlay(false, ControlToolBar::PlayAppearance::Straight);
|
||||
}
|
||||
}
|
||||
|
||||
bool Scrubber::IsScrubbing() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user