From 68f4fe6566515cc9440ae8f6ee490648c14ec3b4 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 14 Jul 2015 16:03:44 -0700 Subject: [PATCH] fix lagging touch events --- interface/src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index aa978f3464..de99940d51 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1853,7 +1853,7 @@ void Application::idle() { } // After finishing all of the above work, ensure the idle timer is set to the proper interval, // depending on whether we're throttling or not - idleTimer->start(_glWidget->isThrottleRendering() ? THROTTLED_IDLE_TIMER_DELAY : 0); + idleTimer->start(_glWidget->isThrottleRendering() ? THROTTLED_IDLE_TIMER_DELAY : 1); } // check for any requested background downloads.