remove "Make Ramped" from right click tempo marker menu.
[ardour.git] / gtk2_ardour / editor_markers.cc
index 23ab470f7c0d4e93795a4d7eb5a86ec07692fc1c..1e8074c7f3f725f55b1ad943ded353ef5c879f8a 100644 (file)
@@ -991,10 +991,8 @@ Editor::build_tempo_marker_menu (TempoMarker* loc, bool can_remove)
        MenuList& items = tempo_marker_menu->items();
        tempo_marker_menu->set_name ("ArdourContextMenu");
 
-       if (loc->tempo().type() == TempoSection::Constant) {
-               items.push_back (MenuElem (_("Make Ramped"), sigc::mem_fun(*this, &Editor::toggle_tempo_type)));
-       } else {
-               items.push_back (MenuElem (_("Make Constant"), sigc::mem_fun(*this, &Editor::toggle_tempo_type)));
+       if (loc->tempo().type() == TempoSection::Ramp) {
+               items.push_back (MenuElem (_("Set Constant"), sigc::mem_fun(*this, &Editor::toggle_tempo_type)));
        }
 
        if (loc->tempo().position_lock_style() == AudioTime && can_remove) {