diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-31 16:51:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-31 16:51:12 +0100 |
| commit | 451d777c5bbf289629588fc67c1a4e55a12347ea (patch) | |
| tree | 5bf2402a2f74ee83127f5a905e13ed37879ca50f | |
| parent | 33cf29b8b21e890eea8f715609a8ef776277b3da (diff) | |
Add a little gap between player buttons and the position slider.
| -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 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); |
