A few comments.
[ardour.git] / gtk2_ardour / editor_actions.cc
index b1ef5328d1d6e3cfe7242db3bbed94e4e2344c83..2687d05befdde43d9a7e0714ef44aab833f51894 100644 (file)
@@ -194,6 +194,12 @@ Editor::register_actions ()
 
        act = reg_sens (editor_actions, "track-record-enable-toggle", _("Toggle Record Enable"), sigc::mem_fun(*this, &Editor::toggle_record_enable));
        ActionManager::track_selection_sensitive_actions.push_back (act);
+       act = reg_sens (editor_actions, "track-solo-toggle", _("Toggle Solo"), sigc::mem_fun(*this, &Editor::toggle_solo));
+       ActionManager::track_selection_sensitive_actions.push_back (act);
+       act = reg_sens (editor_actions, "track-mute-toggle", _("Toggle Mute"), sigc::mem_fun(*this, &Editor::toggle_mute));
+       ActionManager::track_selection_sensitive_actions.push_back (act);
+       act = reg_sens (editor_actions, "track-solo-isolate-toggle", _("Toggle Solo Isolate"), sigc::mem_fun(*this, &Editor::toggle_solo_isolate));
+       ActionManager::track_selection_sensitive_actions.push_back (act);
 
        for (int i = 1; i <= 12; ++i) {
                string const a = string_compose (X_("save-visual-state-%1"), i);