1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Group Spectrograms Preferences page under Tracks, again

This commit is contained in:
Paul Licameli 2015-08-20 13:32:41 -04:00
parent 1eef41607e
commit b3f4050627
2 changed files with 5 additions and 5 deletions

View File

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

View File

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