summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-04 09:27:28 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-04 09:27:33 -0400
commitbca1be28e31af8ad56230974ddc14f8eae6f64ce (patch)
tree36a2968b01c7f91afc3451c9b08181a26ad21fe8 /gtk2_ardour/route_ui.cc
parentd233b33707b0600e777800534a8c0a47e8a86511 (diff)
avoid unnecessary multiple calls to RouteUI::update_monitoring_state()
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 4427810bde..7ecb4f2031 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1289,15 +1289,13 @@ RouteUI::update_mute_display ()
void
RouteUI::route_rec_enable_changed ()
{
- blink_rec_display(true); //this lets the button change "immediately" rather than wait for the next blink
- update_monitoring_display ();
+ blink_rec_display (true); //this lets the button change "immediately" rather than wait for the next blink
}
void
RouteUI::session_rec_enable_changed ()
{
- blink_rec_display(true); //this lets the button change "immediately" rather than wait for the next blink
- update_monitoring_display ();
+ blink_rec_display (true); //this lets the button change "immediately" rather than wait for the next blink
}
void