diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-02-21 19:50:39 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-02-21 19:50:39 +0000 |
| commit | 321a58aba62adeb1f2650ad0c7d9557e33c7d594 (patch) | |
| tree | d20622cbaab0e9b6d503b1b1382f260ccd6b50b1 /src/tools/dcpomatic.cc | |
| parent | 6f2a0e80468f71aba9649bc36ae2ef4afc245203 (diff) | |
Fix broken content remove button.
Diffstat (limited to 'src/tools/dcpomatic.cc')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 7d41ff2e6..1e40fbd69 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -251,7 +251,7 @@ public: accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file); accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove); Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file); - Bind (wxEVT_MENU, boost::bind (&ContentPanel::remove_clicked, _film_editor->content_panel()), ID_remove); + Bind (wxEVT_MENU, boost::bind (&ContentPanel::remove_clicked, _film_editor->content_panel(), true), ID_remove); wxAcceleratorTable accel_table (2, accel); SetAcceleratorTable (accel_table); |
