From 63e15e173767204d17a678aa9620ca54aee359c0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 9 Apr 2012 00:45:22 +0000 Subject: [PATCH] MCP: change refresh interval for meters + automation + timecode to 100msec git-svn-id: svn://localhost/ardour2/branches/3.0@11845 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/surfaces/mackie/mackie_control_protocol.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/surfaces/mackie/mackie_control_protocol.cc b/libs/surfaces/mackie/mackie_control_protocol.cc index d61661c666..b883d0b51a 100644 --- a/libs/surfaces/mackie/mackie_control_protocol.cc +++ b/libs/surfaces/mackie/mackie_control_protocol.cc @@ -400,7 +400,7 @@ MackieControlProtocol::set_active (bool yn) // must come after _active = true otherwise it won't run update_surface(); - Glib::RefPtr meter_timeout = Glib::TimeoutSource::create (25); + Glib::RefPtr meter_timeout = Glib::TimeoutSource::create (100); // milliseconds meter_connection = meter_timeout->connect (sigc::mem_fun (*this, &MackieControlProtocol::meter_update));