From 8ee314385db8b403315719295f21290ceb9b14bc Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 7 Jun 2024 12:04:37 -0500 Subject: [PATCH] L: remove some esoteric range marker actions --- gtk2_ardour/editor_markers.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index cf2c3ec370..01726da762 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -1201,9 +1201,13 @@ Editor::build_range_marker_menu (Location* loc, bool loop_or_punch, bool session items.push_back (MenuElem (_("Export Range..."), sigc::mem_fun(*this, &Editor::export_range))); items.push_back (SeparatorElem()); +#ifndef LIVETRAX items.push_back (MenuElem (_("Promote to Time Origin"), sigc::mem_fun(*this, &Editor::marker_menu_set_origin))); +#endif if (!loop_or_punch_or_session) { +#ifndef LIVETRAX items.push_back (MenuElem (_("Hide Range"), sigc::mem_fun(*this, &Editor::marker_menu_hide))); +#endif items.push_back (MenuElem (_("Rename Range..."), sigc::mem_fun(*this, &Editor::marker_menu_rename))); }