diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-24 14:51:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-24 14:51:43 +0100 |
| commit | 2dce4be6728fcb58170c7c8ef824c674d7462f63 (patch) | |
| tree | 9b0bcc394eaecde25a7747e9ed7bfa4bc6914e61 /src/wx | |
| parent | 5ece2775cee162d7523a5318663a6dd8f7e52651 (diff) | |
Remove unused bits of Format.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/film_editor.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 050b0c3e2..004bcb922 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -237,11 +237,6 @@ FilmEditor::make_video_panel () _video_sizer->Add (grid, 0, wxALL, 8); int r = 0; - add_label_to_grid_bag_sizer (grid, _video_panel, _("Format"), wxGBPosition (r, 0)); - _format = new wxChoice (_video_panel, wxID_ANY); - grid->Add (_format, wxGBPosition (r, 1)); - ++r; - add_label_to_grid_bag_sizer (grid, _video_panel, _("Left crop"), wxGBPosition (r, 0)); _left_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)); grid->Add (_left_crop, wxGBPosition (r, 1)); @@ -262,6 +257,11 @@ FilmEditor::make_video_panel () grid->Add (_bottom_crop, wxGBPosition (r, 1)); ++r; + add_label_to_grid_bag_sizer (grid, _video_panel, _("Scale to"), wxGBPosition (r, 0)); + _format = new wxChoice (_video_panel, wxID_ANY); + grid->Add (_format, wxGBPosition (r, 1)); + ++r; + _scaling_description = new wxStaticText (_video_panel, wxID_ANY, wxT ("\n \n \n \n"), wxDefaultPosition, wxDefaultSize); grid->Add (_scaling_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6); wxFont font = _scaling_description->GetFont(); |
