Fix missing scrollbar in the audio tab on macOS/Windows (#2480).
[dcpomatic.git] / src / wx / film_editor.cc
index 00b260919859e430df45b897405e5a67758091a0..e602f9333ca40bb9b65fd0aff1d9bbdac9038e5d 100644 (file)
@@ -49,13 +49,13 @@ using namespace boost::placeholders;
 #endif
 
 
-FilmEditor::FilmEditor (wxWindow* parent, weak_ptr<FilmViewer> viewer)
+FilmEditor::FilmEditor(wxWindow* parent, FilmViewer& viewer)
        : wxPanel (parent)
 {
        auto s = new wxBoxSizer (wxVERTICAL);
 
        auto notebook = new wxNotebook(this, wxID_ANY);
-       s->Add(notebook, 1);
+       s->Add(notebook, 1, wxEXPAND);
 
        _content_panel = new ContentPanel(notebook, _film, viewer);
        notebook->AddPage(_content_panel->window(), _("Content"), true);