From 897798ed6825fee5fdb5d0e6c8ac360f3eae729b Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sat, 12 Feb 2022 21:49:57 -0600 Subject: [PATCH] remove cue-behavior toggle from ruler context menu --- gtk2_ardour/editor_rulers.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtk2_ardour/editor_rulers.cc b/gtk2_ardour/editor_rulers.cc index c8bdef053b..6f608d23dd 100644 --- a/gtk2_ardour/editor_rulers.cc +++ b/gtk2_ardour/editor_rulers.cc @@ -247,10 +247,6 @@ Editor::popup_ruler_menu (timepos_t const & where, ItemType t) break; case CueMarkerBarItem: - ruler_items.push_back (CheckMenuElem (_("Ignore cue markers"))); - cme = static_cast (&ruler_items.back()); - cme->set_active (Config->get_cue_behavior() != ARDOUR::FollowCues); - cme->signal_activate().connect (sigc::mem_fun (*this, &Editor::toggle_cue_behavior)); ruler_items.push_back (MenuElem (_("Stop All Cues"), sigc::bind (sigc::mem_fun (*this, &Editor::mouse_add_new_marker), where, Location::IsCueMarker, INT32_MAX))); for (int32_t n = 0; n < default_triggers_per_box; ++n) { ruler_items.push_back (MenuElem (string_compose (_("Cue %1"), cue_marker_name (n)), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_add_new_marker), where, Location::IsCueMarker, n)));