GUI: Remove toolbar from fullscreen
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4076 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
da6a200540
commit
843a07d22e
|
@ -429,18 +429,6 @@ CFrame::CFrame(bool showLogWindow,
|
||||||
m_Mgr->AddPane(m_NB0, wxAuiPaneInfo().Name(wxT("Pane1")).Caption(wxT("Pane1")).Hide());
|
m_Mgr->AddPane(m_NB0, wxAuiPaneInfo().Name(wxT("Pane1")).Caption(wxT("Pane1")).Hide());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create toolbar
|
|
||||||
RecreateToolbar();
|
|
||||||
if (!SConfig::GetInstance().m_InterfaceToolbar) DoToggleToolbar(false);
|
|
||||||
|
|
||||||
// Show titles to position the panes
|
|
||||||
/*
|
|
||||||
m_Mgr->GetPane(wxT("Pane0")).CaptionVisible(true);
|
|
||||||
m_Mgr->GetPane(wxT("Pane1")).CaptionVisible(true);
|
|
||||||
m_Mgr->GetPane(wxT("Pane2")).CaptionVisible(true);
|
|
||||||
m_Mgr->GetPane(wxT("Pane3")).CaptionVisible(true);
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (UseDebugger)
|
if (UseDebugger)
|
||||||
{
|
{
|
||||||
// Setup perspectives
|
// Setup perspectives
|
||||||
|
@ -475,6 +463,18 @@ CFrame::CFrame(bool showLogWindow,
|
||||||
m_Mgr->GetPane(wxT("Pane1")).Hide().PaneBorder(false).CaptionVisible(false).Layer(0).Right();
|
m_Mgr->GetPane(wxT("Pane1")).Hide().PaneBorder(false).CaptionVisible(false).Layer(0).Right();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create toolbar
|
||||||
|
RecreateToolbar();
|
||||||
|
if (!SConfig::GetInstance().m_InterfaceToolbar) DoToggleToolbar(false);
|
||||||
|
|
||||||
|
// Show titles to position the panes
|
||||||
|
/*
|
||||||
|
m_Mgr->GetPane(wxT("Pane0")).CaptionVisible(true);
|
||||||
|
m_Mgr->GetPane(wxT("Pane1")).CaptionVisible(true);
|
||||||
|
m_Mgr->GetPane(wxT("Pane2")).CaptionVisible(true);
|
||||||
|
m_Mgr->GetPane(wxT("Pane3")).CaptionVisible(true);
|
||||||
|
*/
|
||||||
|
|
||||||
// Show window
|
// Show window
|
||||||
Show();
|
Show();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue