From: Carl Hetherington Date: Sun, 1 May 2022 17:32:14 +0000 (+0200) Subject: Fix the alignment of the current position in the playback controls. X-Git-Tag: v2.16.11~41 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=db845a29ef318bc08c4d713c4c47ec5203867c0d;ds=sidebyside Fix the alignment of the current position in the playback controls. --- 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 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);