diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/content_panel.cc | 8 | ||||
| -rw-r--r-- | src/wx/content_panel.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 9e73900fc..31dd56151 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -300,6 +300,7 @@ ContentPanel::ContentPanel(wxNotebook* n, shared_ptr<Film> film, FilmViewer& vie _content->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&ContentPanel::item_selected, this)); _content->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&ContentPanel::item_deselected, this)); + _content->Bind (wxEVT_LIST_ITEM_FOCUSED, boost::bind (&ContentPanel::item_focused, this)); _content->Bind (wxEVT_LIST_ITEM_RIGHT_CLICK, boost::bind (&ContentPanel::right_click, this, _1)); _content->Bind (wxEVT_DROP_FILES, boost::bind (&ContentPanel::files_dropped, this, _1)); _add_file->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_file_clicked, this)); @@ -450,6 +451,13 @@ ContentPanel::item_selected () void +ContentPanel::item_focused() +{ + signal_manager->when_idle(boost::bind(&ContentPanel::check_selection, this)); +} + + +void ContentPanel::check_selection () { if (_no_check_selection) { diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index ca0d49719..45478a699 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -102,6 +102,7 @@ private: void item_selected (); void item_deselected (); void item_deselected_idle (); + void item_focused (); void check_selection (); void add_folder_clicked (); void add_dcp_clicked (); |
