diff --git a/gtk2_ardour/ardour.menus.in b/gtk2_ardour/ardour.menus.in index e997262a01..afb6647f12 100644 --- a/gtk2_ardour/ardour.menus.in +++ b/gtk2_ardour/ardour.menus.in @@ -427,7 +427,6 @@ - diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 0ade4e1563..9034f4820a 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -4688,16 +4688,6 @@ Editor::show_rhythm_ferret () rhythm_ferret->present (); } -void -Editor::show_bundle_manager () -{ - if (_bundle_manager == 0) { - _bundle_manager = new BundleManager (*session); - } - - _bundle_manager->show (); -} - void Editor::show_global_port_matrix (ARDOUR::DataType t) { diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h index 34e810e345..684637740c 100644 --- a/gtk2_ardour/editor.h +++ b/gtk2_ardour/editor.h @@ -412,7 +412,6 @@ class Editor : public PublicEditor void toggle_meter_updating(); void show_rhythm_ferret(); - void show_bundle_manager (); void show_global_port_matrix (ARDOUR::DataType); void goto_visual_state (uint32_t); diff --git a/gtk2_ardour/editor_actions.cc b/gtk2_ardour/editor_actions.cc index 25239ef356..898edf6041 100644 --- a/gtk2_ardour/editor_actions.cc +++ b/gtk2_ardour/editor_actions.cc @@ -566,8 +566,6 @@ Editor::register_actions () ActionManager::region_selection_sensitive_actions.push_back (act); act = ActionManager::register_action (editor_actions, "toggle-rhythm-ferret", _("Rhythm Ferret"), mem_fun(*this, &Editor::show_rhythm_ferret)); ActionManager::session_sensitive_actions.push_back (act); - act = ActionManager::register_action (editor_actions, "toggle-bundle-manager", _("Bundle Manager"), mem_fun (*this, &Editor::show_bundle_manager)); - ActionManager::session_sensitive_actions.push_back (act); act = ActionManager::register_action (editor_actions, "toggle-audio-connection-manager", _("Audio Connection Manager"), bind (mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::AUDIO)); ActionManager::session_sensitive_actions.push_back (act); act = ActionManager::register_action (editor_actions, "toggle-midi-connection-manager", _("MIDI Connection Manager"), bind (mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::MIDI));