13
0

L: remove menu action 'change same track-type' since we only have one

This commit is contained in:
Ben Loftis 2024-05-22 20:14:38 -05:00
parent c873fcb110
commit beeb5c8292

View File

@ -2126,9 +2126,11 @@ MixerStrip::popup_level_meter_menu (GdkEventButton* ev)
sigc::bind (SetMeterTypeMulti, -1, _route->route_group(), cmt)));
items.push_back (MenuElem (string_compose(_("Change all to %1"), cmn),
sigc::bind (SetMeterTypeMulti, 0, _route->route_group(), cmt)));
#ifndef LIVETRAX
items.push_back (MenuElem (string_compose(_("Change same track-type to %1"), cmn),
sigc::bind (SetMeterTypeMulti, _strip_type, _route->route_group(), cmt)));
#endif
m->popup (ev->button, ev->time);
}