13
0

L: remove tempo items from main clock

This commit is contained in:
Ben Loftis 2024-05-21 07:50:29 -05:00
parent 2137672fde
commit 0e4c20cddd

View File

@ -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