| 705 | } |
| 706 | |
| 707 | void ControlToolBar::OnFF(wxCommandEvent & WXUNUSED(evt)) |
| 708 | { |
| 709 | mFF->PushDown(); |
| 710 | mFF->PopUp(); |
| 711 | |
| 712 | AudacityProject *p = &mProject; |
| 713 | |
| 714 | { |
| 715 | ProjectAudioManager::Get( *p ).StopIfPaused(); |
| 716 | Viewport::Get(*p).ScrollToEnd(mFF->WasShiftDown()); |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | // works out the width of the field in the status bar needed for the state (eg play, record pause) |
| 721 | static ProjectStatus::RegisteredStatusWidthFunction |
no test coverage detected