summaryrefslogtreecommitdiff
path: root/src/wx/controls.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-11-20 12:57:13 +0100
committerCarl Hetherington <cth@carlh.net>2019-11-20 12:57:13 +0100
commitd7df8d5dd66834e34cd61b425ed80fe21a7ff755 (patch)
treeefb8b546bc2454e8c72246fa2366658474e1587e /src/wx/controls.cc
parentddf8e31d94c4f6eb7b336ee7168a6a6499ded515 (diff)
Put the timecode next to the rewind-to-0 button to help avoid mouse-slips (#1234).v2.15.36
Diffstat (limited to 'src/wx/controls.cc')
-rw-r--r--src/wx/controls.cc2
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);