From ce5103b8dff4d16ead0bcb90b236f51880215f9c Mon Sep 17 00:00:00 2001 From: mchinen Date: Sun, 9 Jan 2011 21:26:11 +0000 Subject: [PATCH] Make DeviceToolBar on by default as preferences are now gone --- 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 fbbe4e234..b08b8604e 100644 --- a/src/toolbars/ToolManager.cpp +++ b/src/toolbars/ToolManager.cpp @@ -560,7 +560,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 ], ndx == DeviceBarID ? false : true ); + gPrefs->Read( wxT("Show"), &show[ ndx ], true ); gPrefs->Read( wxT("X"), &x, -1 ); gPrefs->Read( wxT("Y"), &y, -1 ); gPrefs->Read( wxT("W"), &width[ ndx ], -1 );