diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-12 22:48:13 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-14 11:41:18 +0200 |
| commit | deb61d087799d18cce97b1f0f99fe036d2214a42 (patch) | |
| tree | 3d20ce5bcc862d6fef5a194d0e2449e7400a7daf /src/wx/film_editor.cc | |
| parent | f479e6edc5152edfa4b21f85e925b890818817af (diff) | |
Allow dragging of the border between the controls and the preview (#2350).
Diffstat (limited to 'src/wx/film_editor.cc')
| -rw-r--r-- | src/wx/film_editor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 70c4a7b24..e602f9333 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -55,7 +55,7 @@ FilmEditor::FilmEditor(wxWindow* parent, FilmViewer& viewer) 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); |
