Allow toggling the toolbar in the menu

This commit is contained in:
archshift 2014-08-08 14:36:20 -07:00
parent 400a7bd612
commit 67d67884a1

View File

@ -1891,26 +1891,21 @@ void CFrame::OnToggleToolbar(wxCommandEvent& event)
} }
void CFrame::DoToggleToolbar(bool _show) void CFrame::DoToggleToolbar(bool _show)
{ {
if (_show) GetToolBar()->Show(_show);
if (g_pCodeWindow)
{ {
m_Mgr->GetPane("TBMain").Show(); if (_show)
if (g_pCodeWindow)
{ {
m_Mgr->GetPane("TBDebug").Show();
m_Mgr->GetPane("TBAui").Show(); m_Mgr->GetPane("TBAui").Show();
} }
m_Mgr->Update(); else
}
else
{
m_Mgr->GetPane("TBMain").Hide();
if (g_pCodeWindow)
{ {
m_Mgr->GetPane("TBDebug").Hide();
m_Mgr->GetPane("TBAui").Hide(); m_Mgr->GetPane("TBAui").Hide();
} }
m_Mgr->Update();
} }
m_Mgr->Update();
} }
// Enable and disable the status bar // Enable and disable the status bar