Merge pull request #2135 from lioncash/sizer

DolphinWX: Remove an unnecessary sizer from the watch window
This commit is contained in:
skidau 2015-02-27 07:43:34 +11:00
commit ae9a63479f
1 changed files with 0 additions and 4 deletions

View File

@ -9,7 +9,6 @@
#include <wx/event.h>
#include <wx/gdicmn.h>
#include <wx/panel.h>
#include <wx/sizer.h>
#include <wx/string.h>
#include <wx/windowid.h>
#include <wx/aui/auibar.h>
@ -70,10 +69,7 @@ CWatchWindow::CWatchWindow(wxWindow* parent, wxWindowID id,
m_mgr.SetManagedWindow(this);
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL);
m_GPRGridView = new CWatchView(this);
sGrid->Add(m_GPRGridView, 1, wxGROW);
SetSizer(sGrid);
m_mgr.AddPane(new CWatchToolbar(this, wxID_ANY), wxAuiPaneInfo().ToolbarPane().Top().
LeftDockable(true).RightDockable(true).BottomDockable(false).Floatable(false));