mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 22:56:32 +01:00
Add session signal to track mute-changes
In preparation for Faderport8 "Mute Clear" LED Button.
This commit is contained in:
parent
bcab83205b
commit
ea8eb956ff
2 changed files with 2 additions and 0 deletions
|
|
@ -853,6 +853,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
|
||||||
|
|
||||||
PBD::Signal1<void,bool> SoloActive;
|
PBD::Signal1<void,bool> SoloActive;
|
||||||
PBD::Signal0<void> SoloChanged;
|
PBD::Signal0<void> SoloChanged;
|
||||||
|
PBD::Signal0<void> MuteChanged;
|
||||||
PBD::Signal0<void> IsolatedChanged;
|
PBD::Signal0<void> IsolatedChanged;
|
||||||
PBD::Signal0<void> MonitorChanged;
|
PBD::Signal0<void> MonitorChanged;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3848,6 +3848,7 @@ Session::remove_route (boost::shared_ptr<Route> route)
|
||||||
void
|
void
|
||||||
Session::route_mute_changed ()
|
Session::route_mute_changed ()
|
||||||
{
|
{
|
||||||
|
MuteChanged (); /* EMIT SIGNAL */
|
||||||
set_dirty ();
|
set_dirty ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue