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

Fix default positions of toolbars.

Device toolbar had jumped to the top with a recent change of toolbar visibility.
This commit is contained in:
James Crook 2016-08-15 09:42:29 +01:00
parent b306b1621c
commit 45606fa1f4

View File

@ -494,7 +494,7 @@ static struct DefaultConfigEntry {
// start another top dock row
{ ScrubbingBarID, NoBarID, TransportBarID },
{ DeviceBarID, ScrubbingBarID, NoBarID },
{ DeviceBarID, ScrubbingBarID, TransportBarID },
// Hidden by default in top dock
{ MeterBarID, NoBarID, NoBarID },
@ -657,7 +657,7 @@ void ToolManager::ReadConfig()
// Change to the bar subkey
gPrefs->SetPath( bar->GetSection() );
bool bShownByDefault = false;
bool bShownByDefault = true;
int defaultDock = TopDockID;
if( ndx == SelectionBarID )