Fixing comment to reflect code

This commit is contained in:
Brad Davis 2015-07-01 16:54:59 -07:00
parent 4cffa26c01
commit 88a733181e

View file

@ -1845,8 +1845,9 @@ void Application::idle() {
_idleLoopStdev.reset();
}
// After finishing all of the above work, restart the idle timer, allowing 2ms to process events.
}
// 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);
}