1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

Hide Scrubbing Toolbar by default.

This commit is contained in:
James Crook 2016-08-14 15:59:07 +01:00
parent 8a8b43d956
commit d0a32f27eb

View File

@ -563,6 +563,7 @@ void ToolManager::Reset()
#ifdef EXPERIMENTAL_SPECTRAL_EDITING
|| ndx == SpectralSelectionBarID
#endif
|| ndx == ScrubbingBarID
)
{
expose = false;
@ -656,13 +657,15 @@ void ToolManager::ReadConfig()
// Change to the bar subkey
gPrefs->SetPath( bar->GetSection() );
bool bShownByDefault = true;
bool bShownByDefault = false;
int defaultDock = TopDockID;
if( ndx == SelectionBarID )
defaultDock = BotDockID;
if( ndx == MeterBarID )
bShownByDefault = false;
if( ndx == ScrubbingBarID )
bShownByDefault = false;
#ifdef EXPERIMENTAL_SPECTRAL_EDITING
if( ndx == SpectralSelectionBarID ){