summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-25 23:21:07 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-25 23:21:07 +0100
commit2f3e95c42bdb655afc990983e737f1c6f594af33 (patch)
treef4c5191e86d54e6bac331ebf98ddd9161427e23e
parentc2ef3e10b128ab8b4c6a3d18542861be587a7d9c (diff)
Move frames per second a bit.
-rw-r--r--src/wx/film_editor.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 28c28c013..385bc4110 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -66,11 +66,6 @@ FilmEditor::FilmEditor (Film* f, wxWindow* parent)
_dcp_content_type = new wxComboBox (this, wxID_ANY);
sizer->Add (_dcp_content_type);
- video_control (add_label_to_sizer (sizer, this, "Frames Per Second"));
- _frames_per_second = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize, 0, wxTextValidator (wxFILTER_NUMERIC));
- video_control (_frames_per_second);
- sizer->Add (video_control (_frames_per_second));
-
add_label_to_sizer (sizer, this, "Format");
_format = new wxComboBox (this, wxID_ANY);
sizer->Add (_format);
@@ -128,6 +123,10 @@ FilmEditor::FilmEditor (Film* f, wxWindow* parent)
sizer->Add (s);
}
+ video_control (add_label_to_sizer (sizer, this, "Frames Per Second"));
+ _frames_per_second = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize, 0, wxTextValidator (wxFILTER_NUMERIC));
+ sizer->Add (video_control (_frames_per_second));
+
video_control (add_label_to_sizer (sizer, this, "Original Size"));
_original_size = new wxStaticText (this, wxID_ANY, wxT (""));
sizer->Add (video_control (_original_size), 1, wxALIGN_CENTER_VERTICAL);