mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
avoid unnecessary multiple calls to RouteUI::update_monitoring_state()
This commit is contained in:
parent
d233b33707
commit
bca1be28e3
1 changed files with 2 additions and 4 deletions
|
|
@ -1289,15 +1289,13 @@ RouteUI::update_mute_display ()
|
||||||
void
|
void
|
||||||
RouteUI::route_rec_enable_changed ()
|
RouteUI::route_rec_enable_changed ()
|
||||||
{
|
{
|
||||||
blink_rec_display(true); //this lets the button change "immediately" rather than wait for the next blink
|
blink_rec_display (true); //this lets the button change "immediately" rather than wait for the next blink
|
||||||
update_monitoring_display ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
RouteUI::session_rec_enable_changed ()
|
RouteUI::session_rec_enable_changed ()
|
||||||
{
|
{
|
||||||
blink_rec_display(true); //this lets the button change "immediately" rather than wait for the next blink
|
blink_rec_display (true); //this lets the button change "immediately" rather than wait for the next blink
|
||||||
update_monitoring_display ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue