From 451d777c5bbf289629588fc67c1a4e55a12347ea Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 31 Dec 2023 16:51:12 +0100 Subject: [PATCH] Add a little gap between player buttons and the position slider. --- 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 f8bd7eeb9..0bb0960c8 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -108,7 +108,7 @@ Controls::Controls(wxWindow* parent, FilmViewer& viewer, bool editor_controls) h_sizer->Add (_forward_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); _button_sizer = new wxBoxSizer (wxHORIZONTAL); - h_sizer->Add (_button_sizer, 0, wxEXPAND); + h_sizer->Add(_button_sizer, 0, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_GAP); { auto box = new wxBoxSizer (wxVERTICAL); -- 2.30.2