diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-16 20:28:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-16 20:28:33 +0000 |
| commit | a7f27819cbb7db110587603c2d0717dd4c018c11 (patch) | |
| tree | 4ba91cddae0f52289e63b55cf729ab7d36e253e3 /src | |
| parent | eb6093ea4a079eb34ce9f3ad07fd0b7b80bb524d (diff) | |
Couple of missing video_control() calls.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_editor.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 32336d763..908bb3a1e 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -219,9 +219,9 @@ FilmEditor::make_video_panel () pad->Add (_video_sizer, 0, wxALL, 8); _video_panel->SetSizer (pad); - add_label_to_sizer (_video_sizer, _video_panel, "Format"); + video_control (add_label_to_sizer (_video_sizer, _video_panel, "Format")); _format = new wxComboBox (_video_panel, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize, 0, 0, wxCB_READONLY); - _video_sizer->Add (_format); + _video_sizer->Add (video_control (_format)); { add_label_to_sizer (_video_sizer, _video_panel, "Crop"); |
