Update monitoring display when TB cues change

This commit is contained in:
Robin Gareus 2022-02-04 01:18:54 +01:00
parent 5e2912b7eb
commit e2bc670e6b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -416,6 +416,10 @@ RouteUI::set_route (boost::shared_ptr<Route> rp)
update_monitoring_display ();
}
if (_route->triggerbox ()) {
_route->triggerbox ()->EmptyStatusChanged.connect (route_connections, invalidator (*this), boost::bind (&RouteUI::update_monitoring_display, this), gui_context());
}
mute_button->unset_flags (Gtk::CAN_FOCUS);
solo_button->unset_flags (Gtk::CAN_FOCUS);
@ -2023,6 +2027,8 @@ RouteUI::parameter_changed (string const & p)
update_monitoring_display ();
} else if (p == "auto-input") {
update_monitoring_display ();
} else if (p == "triggerbox-overrides-disk-monitoring") {
update_monitoring_display ();
} else if (p == "layered-record-mode") {
update_monitoring_display ();
} else if (p == "auto-input-does-talkback") {