| 645 | } |
| 646 | |
| 647 | void ExportAudioDialog::OnFormatChange(wxCommandEvent& event) |
| 648 | { |
| 649 | Layout(); |
| 650 | Fit(); |
| 651 | |
| 652 | auto enableMeta = false; |
| 653 | if(auto plugin = mExportOptionsPanel->GetPlugin()) |
| 654 | enableMeta = plugin->GetFormatInfo(mExportOptionsPanel->GetFormat()).canMetaData; |
| 655 | mEditMetadata->Enable(enableMeta); |
| 656 | mExportSettingsDirty = true; |
| 657 | } |
| 658 | |
| 659 | void ExportAudioDialog::UpdateExportSettings() |
| 660 | { |
nothing calls this directly
no test coverage detected