| 271 | } |
| 272 | |
| 273 | void EffectTimeScale::OnText_PitchPercentChangeStart(wxCommandEvent & WXUNUSED(evt)) |
| 274 | { |
| 275 | if (!EffectEditor::EnableApply( |
| 276 | mUIParent, mUIParent->TransferDataFromWindow())) |
| 277 | { |
| 278 | return; |
| 279 | } |
| 280 | |
| 281 | m_PitchHalfStepsStart = PercentChangeToHalfSteps(m_PitchPercentChangeStart); |
| 282 | Update_Text_PitchHalfStepsStart(); |
| 283 | } |
| 284 | |
| 285 | void EffectTimeScale::OnText_PitchPercentChangeEnd(wxCommandEvent & WXUNUSED(evt)) |
| 286 | { |
nothing calls this directly
no test coverage detected