diff options
Diffstat (limited to 'src/wx/standard_controls.cc')
| -rw-r--r-- | src/wx/standard_controls.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/standard_controls.cc b/src/wx/standard_controls.cc index 5df89f8fe..e73e2f6f6 100644 --- a/src/wx/standard_controls.cc +++ b/src/wx/standard_controls.cc @@ -29,7 +29,7 @@ StandardControls::StandardControls (wxWindow* parent, shared_ptr<FilmViewer> vie : Controls (parent, viewer, editor_controls) , _play_button (new wxToggleButton(this, wxID_ANY, _("Play"))) { - _button_sizer->Add (_play_button, 0, wxEXPAND); + _button_sizer->Add (_play_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); _play_button->Bind (wxEVT_TOGGLEBUTTON, boost::bind(&StandardControls::play_clicked, this)); } |
