1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-10 17:11:17 +02:00

Group Spectrograms Preferences page under Tracks, again

This commit is contained in:
Paul Licameli 2015-08-20 13:33:16 -04:00
commit 8be22c90dc
2 changed files with 5 additions and 5 deletions

View File

@ -169,19 +169,19 @@ PrefsDialog::Factories
&qualityPrefsFactory, &qualityPrefsFactory,
&guiPrefsFactory, &guiPrefsFactory,
&tracksPrefsFactory, // Group other page(s)
PrefsNode(&tracksPrefsFactory, 1),
// &waveformPrefsFactory, // &waveformPrefsFactory,
// &spectrumPrefsFactory, &spectrumPrefsFactory,
// Group one other page // Group one other page
PrefsNode(&importExportPrefsFactory, 1, true), PrefsNode(&importExportPrefsFactory, 1),
&extImportPrefsFactory, &extImportPrefsFactory,
&projectsPrefsFactory, &projectsPrefsFactory,
#if !defined(DISABLE_DYNAMIC_LOADING_FFMPEG) || !defined(DISABLE_DYNAMIC_LOADING_LAME) #if !defined(DISABLE_DYNAMIC_LOADING_FFMPEG) || !defined(DISABLE_DYNAMIC_LOADING_LAME)
&libraryPrefsFactory, &libraryPrefsFactory,
#endif #endif
&spectrumPrefsFactory,
&directoriesPrefsFactory, &directoriesPrefsFactory,
&warningsPrefsFactory, &warningsPrefsFactory,
&effectsPrefsFactory, &effectsPrefsFactory,

View File

@ -40,7 +40,7 @@ class PrefsDialog:public wxDialog
PrefsNode(PrefsPanelFactory *pFactory_, PrefsNode(PrefsPanelFactory *pFactory_,
int nChildren_ = 0, int nChildren_ = 0,
bool expanded_ = false) bool expanded_ = true)
: pFactory(pFactory_), nChildren(nChildren_), expanded(expanded_) : pFactory(pFactory_), nChildren(nChildren_), expanded(expanded_)
{} {}
}; };