diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/controls.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 747d21061..d8df6f2f3 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -89,6 +89,10 @@ Controls::Controls (wxWindow* parent, shared_ptr<FilmViewer> viewer, bool editor wxBoxSizer* left_sizer = new wxBoxSizer (wxVERTICAL); + _spl_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER); + _spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 740); + left_sizer->Add (_spl_view, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP); + _content_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER); /* time */ _content_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 80); @@ -98,10 +102,6 @@ Controls::Controls (wxWindow* parent, shared_ptr<FilmViewer> viewer, bool editor _content_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 580); left_sizer->Add (_content_view, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP); - _spl_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER); - _spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 740); - left_sizer->Add (_spl_view, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP); - wxBoxSizer* e_sizer = new wxBoxSizer (wxHORIZONTAL); e_sizer->Add (left_sizer, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP); |
