From 0e4c20cdddeaf622385ba07173d0d5463bb3a67e Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 21 May 2024 07:50:29 -0500 Subject: [PATCH] L: remove tempo items from main clock --- gtk2_ardour/main_clock.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/main_clock.cc b/gtk2_ardour/main_clock.cc index 867ac3b59c..8ebbbb2e43 100644 --- a/gtk2_ardour/main_clock.cc +++ b/gtk2_ardour/main_clock.cc @@ -60,6 +60,7 @@ MainClock::build_ops_menu () AudioClock::build_ops_menu (); +#ifndef LIVETRAX MenuList& ops_items = ops_menu->items(); ops_items.push_back (SeparatorElem ()); @@ -87,6 +88,7 @@ MainClock::build_ops_menu () ops_items.push_back (MenuElem (_("Edit Time Signature"), sigc::mem_fun(*this, &MainClock::edit_current_meter))); ops_items.push_back (MenuElem (_("Insert Tempo Change"), sigc::mem_fun(*this, &MainClock::insert_new_tempo))); ops_items.push_back (MenuElem (_("Insert Time Signature Change"), sigc::mem_fun(*this, &MainClock::insert_new_meter))); +#endif } void