| 301 | } |
| 302 | |
| 303 | void ExportFilePanel::SetCustomMappingEnabled(bool enabled) |
| 304 | { |
| 305 | if(mMonoStereoMode) |
| 306 | return; |
| 307 | |
| 308 | if(!enabled && mCustomMapping->GetValue()) |
| 309 | { |
| 310 | if(mStereo->IsEnabled()) |
| 311 | mStereo->SetValue(true); |
| 312 | else |
| 313 | mMono->SetValue(true); |
| 314 | } |
| 315 | mCustomMapping->Enable(enabled); |
| 316 | mCustomizeChannels->Enable(enabled); |
| 317 | } |
| 318 | |
| 319 | wxString ExportFilePanel::GetPath() const |
| 320 | { |
no test coverage detected