From ccaf5a307f392e5910e4c4df650db33e27985601 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 1 May 2022 19:32:14 +0200 Subject: Fix the alignment of the current position in the playback controls. --- src/wx/controls.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3