Fix initial action-button tooltip

The same string is used in ARDOUR_UI::action_script_changed()
when an action is un-assigned.
This commit is contained in:
Robin Gareus 2020-06-07 18:13:23 +02:00
parent 27e45c585f
commit b2c62db450
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -493,7 +493,7 @@ Editor::register_actions ()
string const a = string_compose (X_("script-%1"), i);
string const n = string_compose (_("Unset #%1"), i);
act = ActionManager::register_action (lua_script_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::trigger_script), i - 1));
act->set_tooltip (_("no action bound"));
act->set_tooltip (_("No action bound\nRight-click to assign"));
act->set_sensitive (false);
}