13
0

Add session signal to track mute-changes

In preparation for Faderport8 "Mute Clear" LED Button.
This commit is contained in:
Robin Gareus 2017-04-07 23:26:59 +02:00
parent bcab83205b
commit ea8eb956ff
2 changed files with 2 additions and 0 deletions

View File

@ -853,6 +853,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
PBD::Signal1<void,bool> SoloActive;
PBD::Signal0<void> SoloChanged;
PBD::Signal0<void> MuteChanged;
PBD::Signal0<void> IsolatedChanged;
PBD::Signal0<void> MonitorChanged;

View File

@ -3848,6 +3848,7 @@ Session::remove_route (boost::shared_ptr<Route> route)
void
Session::route_mute_changed ()
{
MuteChanged (); /* EMIT SIGNAL */
set_dirty ();
}