summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-23 11:44:00 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-23 11:44:00 +0100
commit17148c3b62e8beb5b537a664517ef581016f4679 (patch)
treeb67547cd5a3a91d74408df2b8a6b9fbe29226cf5
parentce269706e8931e9e35ebec4360b632aa841fd71b (diff)
Fix alignment of frames per second count.
-rw-r--r--ChangeLog4
-rw-r--r--src/wx/film_editor.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 83c704fb7..8801e769b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-23 Carl Hetherington <cth@carlh.net>
+
+ * Fix alignment of frames per second count.
+
2012-09-22 Carl Hetherington <cth@carlh.net>
* Fix bug on OK-ing gain calculation
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 71c48bd79..6de3af9e7 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -132,7 +132,7 @@ FilmEditor::FilmEditor (Film* f, wxWindow* parent)
video_control (add_label_to_sizer (_sizer, this, "Frames Per Second"));
_frames_per_second = new wxStaticText (this, wxID_ANY, wxT (""));
- _sizer->Add (video_control (_frames_per_second));
+ _sizer->Add (video_control (_frames_per_second), 1, wxALIGN_CENTER_VERTICAL);
video_control (add_label_to_sizer (_sizer, this, "Original Size"));
_original_size = new wxStaticText (this, wxID_ANY, wxT (""));