mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Revert "mackie: still respond to route groups visibility changes"
This reverts commit a9ec547457.
This commit is contained in:
parent
a9ec547457
commit
fe3d85b204
5 changed files with 6 additions and 18 deletions
|
|
@ -704,7 +704,7 @@ MackieControlProtocol::connect_session_signals()
|
|||
// receive rude solo changed
|
||||
session->SoloActive.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&MackieControlProtocol::notify_solo_active_changed, this, _1), this);
|
||||
// need to know if group parameters change... might be hidden.
|
||||
session->RouteGroupPropertyChanged.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&MackieControlProtocol::notify_group_property_changed, this, _2), this);
|
||||
session->RouteGroupPropertyChanged.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&MackieControlProtocol::notify_remote_id_changed, this), this);
|
||||
|
||||
// make sure remote id changed signals reach here
|
||||
// see also notify_route_added
|
||||
|
|
@ -1258,17 +1258,6 @@ MackieControlProtocol::notify_solo_active_changed (bool active)
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
MackieControlProtocol::notify_group_property_changed (PropertyChange pc)
|
||||
{
|
||||
if (!pc.contains (Properties::hidden)) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* re-pick routes to show, as if remote ID(s) had changed */
|
||||
notify_remote_id_changed ();
|
||||
}
|
||||
|
||||
void
|
||||
MackieControlProtocol::notify_remote_id_changed()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue