diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/controls.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 5ddcfb6e5..a452e1d13 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -143,7 +143,9 @@ Controls::Controls(wxWindow* parent, FilmViewer& viewer, bool editor_controls) _slider->Bind (wxEVT_SCROLL_THUMBRELEASE, boost::bind(&Controls::slider_released, this)); _rewind_button->Bind (wxEVT_LEFT_DOWN, boost::bind(&Controls::rewind_clicked, this, _1)); _back_button->Bind (wxEVT_LEFT_DOWN, boost::bind(&Controls::back_clicked, this, _1)); + _back_button->Bind (wxEVT_LEFT_DCLICK, boost::bind(&Controls::back_clicked, this, _1)); _forward_button->Bind (wxEVT_LEFT_DOWN, boost::bind(&Controls::forward_clicked, this, _1)); + _forward_button->Bind (wxEVT_LEFT_DCLICK, boost::bind(&Controls::forward_clicked, this, _1)); _frame_number->Bind (wxEVT_LEFT_DOWN, boost::bind(&Controls::frame_number_clicked, this)); _timecode->Bind (wxEVT_LEFT_DOWN, boost::bind(&Controls::timecode_clicked, this)); if (_jump_to_selected) { |
