| 84 | } |
| 85 | |
| 86 | void TimerRecordExportDialog::OnFormatChanged(wxCommandEvent&) |
| 87 | { |
| 88 | Fit(); |
| 89 | Layout(); |
| 90 | |
| 91 | auto enableMeta = false; |
| 92 | if(auto plugin = mExportFilePanel->GetPlugin()) |
| 93 | enableMeta = plugin->GetFormatInfo(mExportFilePanel->GetFormat()).canMetaData; |
| 94 | mEditMetadata->Enable(enableMeta); |
| 95 | } |
nothing calls this directly
no test coverage detected