diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-20 12:57:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-11-20 12:57:13 +0100 |
| commit | d7df8d5dd66834e34cd61b425ed80fe21a7ff755 (patch) | |
| tree | efb8b546bc2454e8c72246fa2366658474e1587e | |
| parent | ddf8e31d94c4f6eb7b336ee7168a6a6499ded515 (diff) | |
Put the timecode next to the rewind-to-0 button to help avoid mouse-slips (#1234).v2.15.36
| -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 a3360b262..b173b43ff 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -93,8 +93,8 @@ Controls::Controls (wxWindow* parent, shared_ptr<FilmViewer> viewer, bool editor time_sizer->Add (_timecode, 0, wxEXPAND); h_sizer->Add (_rewind_button, 0, wxALL, 2); - h_sizer->Add (_back_button, 0, wxALL, 2); h_sizer->Add (time_sizer, 0, wxEXPAND); + h_sizer->Add (_back_button, 0, wxALL, 2); h_sizer->Add (_forward_button, 0, wxALL, 2); _button_sizer = new wxBoxSizer (wxHORIZONTAL); |
