| 697 | } |
| 698 | |
| 699 | void EqualizationUI::OnInterp(wxCommandEvent & WXUNUSED(event)) |
| 700 | { |
| 701 | auto ¶meters = mCurvesList.mParameters; |
| 702 | bool bIsGraphic = !parameters.mDrawMode; |
| 703 | if (bIsGraphic) |
| 704 | { |
| 705 | mBands.GraphicEQ(parameters.mLogEnvelope); |
| 706 | mCurvesList.EnvelopeUpdated(); |
| 707 | } |
| 708 | parameters.mInterp = mInterpChoice->GetSelection(); |
| 709 | } |
| 710 | |
| 711 | void EqualizationUI::OnDrawMode(wxCommandEvent & WXUNUSED(event)) |
| 712 | { |
nothing calls this directly
no test coverage detected