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:
parent
8a8b43d956
commit
d0a32f27eb
@ -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 ){
|
||||
|
Loading…
x
Reference in New Issue
Block a user