diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-01 19:32:14 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-01 19:32:14 +0200 |
| commit | db845a29ef318bc08c4d713c4c47ec5203867c0d (patch) | |
| tree | 69c8bddafc6f1207646e8a3e5b65648a7b72994f | |
| parent | 5c1736bf3bbb9e109e7099f0771eb08f672a47b5 (diff) | |
Fix the alignment of the current position in the playback controls.
| -rw-r--r-- | src/wx/controls.cc | 2 |
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); |
