mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Update monitoring display when TB cues change
This commit is contained in:
parent
5e2912b7eb
commit
e2bc670e6b
1 changed files with 6 additions and 0 deletions
|
|
@ -416,6 +416,10 @@ RouteUI::set_route (boost::shared_ptr<Route> rp)
|
||||||
update_monitoring_display ();
|
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);
|
mute_button->unset_flags (Gtk::CAN_FOCUS);
|
||||||
solo_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 ();
|
update_monitoring_display ();
|
||||||
} else if (p == "auto-input") {
|
} else if (p == "auto-input") {
|
||||||
update_monitoring_display ();
|
update_monitoring_display ();
|
||||||
|
} else if (p == "triggerbox-overrides-disk-monitoring") {
|
||||||
|
update_monitoring_display ();
|
||||||
} else if (p == "layered-record-mode") {
|
} else if (p == "layered-record-mode") {
|
||||||
update_monitoring_display ();
|
update_monitoring_display ();
|
||||||
} else if (p == "auto-input-does-talkback") {
|
} else if (p == "auto-input-does-talkback") {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue