diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-07-09 19:35:44 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-07-09 19:35:44 +0200 |
| commit | 620d3c8db23704b69fc593bd470e7827daa11d86 (patch) | |
| tree | 2df9b928c4e89d24262cdef7dea5d1b3e51ec072 | |
| parent | 84f506ffeb1b1f59fba84415bb9fbc43851e9e35 (diff) | |
Add missing ID.
| -rw-r--r-- | src/wx/dcp_timeline.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_timeline.cc b/src/wx/dcp_timeline.cc index 59aa6d6f4..680118422 100644 --- a/src/wx/dcp_timeline.cc +++ b/src/wx/dcp_timeline.cc @@ -167,8 +167,8 @@ DCPTimeline::DCPTimeline(wxWindow* parent, shared_ptr<Film> film) _film_connection = film->Change.connect(boost::bind(&DCPTimeline::film_changed, this, _1, _2)); _menu = new wxMenu; - _canvas->Bind(wxEVT_MENU, boost::bind(&DCPTimeline::add_reel_boundary, this)); _add_reel_boundary = _menu->Append(ID_add_reel_boundary, _("Add reel boundary")); + _canvas->Bind(wxEVT_MENU, boost::bind(&DCPTimeline::add_reel_boundary, this), ID_add_reel_boundary); setup_reel_settings(); setup_reel_boundaries(); |
