summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-12-18 22:07:59 +0000
committerCarl Hetherington <cth@carlh.net>2018-12-18 22:07:59 +0000
commitd4658d7d79bcf5bfa52f6f26eee3506bb8db82f5 (patch)
treee387d9d942f004f026f7c20ca4ef65cfd660e4fe /src
parent86414bd87863626c0f234c2807af006e28a7c042 (diff)
swaroop: move previous button.
Diffstat (limited to 'src')
-rw-r--r--src/wx/swaroop_controls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/swaroop_controls.cc b/src/wx/swaroop_controls.cc
index a32e50a21..f38fd3343 100644
--- a/src/wx/swaroop_controls.cc
+++ b/src/wx/swaroop_controls.cc
@@ -48,11 +48,11 @@ SwaroopControls::SwaroopControls (wxWindow* parent, shared_ptr<FilmViewer> viewe
, _current_disable_timeline (false)
, _current_disable_next_previous (false)
{
+ _button_sizer->Add (_previous_button, 0, wxEXPAND);
_button_sizer->Add (_play_button, 0, wxEXPAND);
_button_sizer->Add (_pause_button, 0, wxEXPAND);
_button_sizer->Add (_stop_button, 0, wxEXPAND);
_button_sizer->Add (_next_button, 0, wxEXPAND);
- _button_sizer->Add (_previous_button, 0, wxEXPAND);
_spl_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER);
_spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 740);