tooltips: append 'Lock' to Solo Safe menu-item, to match mixer-strip button

This commit is contained in:
Ben Loftis 2022-06-17 09:47:48 -05:00
parent 1965e90c24
commit ca744cd94a
1 changed files with 1 additions and 1 deletions

View File

@ -1428,7 +1428,7 @@ RouteUI::build_solo_menu (void)
solo_isolated_check = dynamic_cast<Gtk::CheckMenuItem*>(&items.back());
check->show_all();
check = new Gtk::CheckMenuItem(_("Solo Safe"));
check = new Gtk::CheckMenuItem(_("Solo Safe (Locked)"));
check->set_active (_route->solo_safe_control()->solo_safe());
check->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &RouteUI::toggle_solo_safe), check));
items.push_back (CheckMenuElem(*check));