summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-01 19:32:14 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-01 23:46:18 +0200
commitccaf5a307f392e5910e4c4df650db33e27985601 (patch)
tree827e860684792fa8211407fb25aa3271e5c6c81f
parenta747e89e930d36f4dac71f9fc9f3754bb709b562 (diff)
Fix the alignment of the current position in the playback controls.
-rw-r--r--src/wx/controls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc
index a6f70c039..c02581cc0 100644
--- a/src/wx/controls.cc
+++ b/src/wx/controls.cc
@@ -105,7 +105,7 @@ Controls::Controls (wxWindow* parent, shared_ptr<FilmViewer> viewer, bool editor
time_sizer->Add (_timecode, 0, wxEXPAND);
h_sizer->Add (_rewind_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2);
- h_sizer->Add (time_sizer, 0, wxEXPAND);
+ h_sizer->Add (time_sizer, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2);
h_sizer->Add (_back_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2);
h_sizer->Add (_forward_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2);