1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-09 16:41:14 +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,
&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_)
{}
};