| 410 | |
| 411 | |
| 412 | void ExportAudioDialog::OnExportRangeChange(wxCommandEvent& event) |
| 413 | { |
| 414 | const auto enableSplits = event.GetId() == ExportRangeSplitID; |
| 415 | mExportOptionsPanel->SetCustomMappingEnabled(!enableSplits); |
| 416 | if(mSplitsPanel->IsShown() != enableSplits) |
| 417 | { |
| 418 | mExportSettingsDirty = true; |
| 419 | mSplitsPanel->Show(enableSplits); |
| 420 | |
| 421 | Layout(); |
| 422 | Fit(); |
| 423 | } |
| 424 | } |
| 425 | void ExportAudioDialog::OnSplitModeChange(wxCommandEvent& event) |
| 426 | { |
| 427 | mIncludeAudioBeforeFirstLabel->Enable(event.GetId() == ExportModeLabelsID); |
nothing calls this directly
no test coverage detected