From: Carl Hetherington Date: Wed, 20 Nov 2019 11:57:13 +0000 (+0100) Subject: Put the timecode next to the rewind-to-0 button to help avoid mouse-slips (#1234). X-Git-Tag: v2.15.36 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=d7df8d5dd66834e34cd61b425ed80fe21a7ff755;ds=sidebyside Put the timecode next to the rewind-to-0 button to help avoid mouse-slips (#1234). --- 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 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);