avoid unnecessary multiple calls to RouteUI::update_monitoring_state()
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 4 Jul 2016 13:27:28 +0000 (09:27 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 4 Jul 2016 13:27:33 +0000 (09:27 -0400)
gtk2_ardour/route_ui.cc

index 4427810bdeefaeca8b8e0bff4c90bd82d45abbab..7ecb4f2031ab484c3b4a8b505319947d088a4138 100644 (file)
@@ -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