1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Select Spectral Edit from Track DropDown

This commit is contained in:
James Crook
2015-05-18 21:58:04 +01:00
committed by Steve Daulton
parent 9f1a7d8e90
commit 88a9e434f5
6 changed files with 56 additions and 12 deletions

View File

@@ -780,6 +780,8 @@ bool NyquistEffect::ProcessOne()
case WaveTrack::WaveformDBDisplay: view = wxT("\"Waveform (dB)\""); break;
case WaveTrack::SpectrumDisplay: view = wxT("\"Spectrogram\""); break;
case WaveTrack::SpectrumLogDisplay: view = wxT("\"Spectrogram log(f)\""); break;
case WaveTrack::SpectralSelectionDisplay: view = wxT("\"Spectral Selection\""); break;
case WaveTrack::SpectralSelectionLogDisplay: view = wxT("\"Spectral Selection log(f)\""); break;
case WaveTrack::PitchDisplay: view = wxT("\"Pitch (EAC)\""); break;
default: view = wxT("NIL"); break;
}