From f824dfcd0dfffc5a02bea9fba592333cdb36be60 Mon Sep 17 00:00:00 2001 From: "james.k.crook@gmail.com" Date: Fri, 24 Oct 2014 20:37:19 +0000 Subject: [PATCH] Fix: With no prior config set show Record and Play meter, don't show Combined meter. --- src/toolbars/ToolManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toolbars/ToolManager.cpp b/src/toolbars/ToolManager.cpp index 7a8355d40..ac1f62e7e 100644 --- a/src/toolbars/ToolManager.cpp +++ b/src/toolbars/ToolManager.cpp @@ -588,7 +588,7 @@ void ToolManager::ReadConfig() // Read in all the settings gPrefs->Read( wxT("Dock"), &dock, ndx == SelectionBarID ? BotDockID : TopDockID ); gPrefs->Read( wxT("Order"), &ord, NoBarID ); - gPrefs->Read( wxT("Show"), &show[ ndx ], true ); + gPrefs->Read( wxT("Show"), &show[ ndx ], ndx != MeterBarID); gPrefs->Read( wxT("X"), &x, -1 ); gPrefs->Read( wxT("Y"), &y, -1 );