From d7345d7d4d75ba5acd9f90163f2fd36d20684fcc Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Wed, 13 Sep 2023 09:05:33 -0500 Subject: [PATCH] Remove marker 'Hide' item from context menu. It is accessible in sidebar. In the sidebar you can both Hide and Show, so less prone to error --- gtk2_ardour/editor_markers.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index d6e2764e31..4ef6d4f3c9 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -1139,7 +1139,6 @@ Editor::build_marker_menu (Location* loc) items.push_back (MenuElem (_("Create Range to Next Marker"), sigc::mem_fun(*this, &Editor::marker_menu_range_to_next))); items.push_back (MenuElem (_("Promote to Time Origin"), sigc::mem_fun(*this, &Editor::marker_menu_set_origin))); - items.push_back (MenuElem (_("Hide"), sigc::mem_fun(*this, &Editor::marker_menu_hide))); items.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &Editor::marker_menu_rename))); items.push_back (CheckMenuElem (_("Lock")));