From 74cf4b57b3b7a3f07b435d545e5621fbdf8f2354 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Mon, 6 Apr 2015 11:09:43 -0700 Subject: [PATCH] Ensure the frame timer doesn't re-engage on exit --- interface/src/GLCanvas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/GLCanvas.cpp b/interface/src/GLCanvas.cpp index 97709d2d53..12a10681ce 100644 --- a/interface/src/GLCanvas.cpp +++ b/interface/src/GLCanvas.cpp @@ -123,7 +123,7 @@ void GLCanvas::activeChanged(Qt::ApplicationState state) { default: // Otherwise, throttle. - if (!_throttleRendering) { + if (!_throttleRendering && !Application::getInstance()->isAboutToQuit()) { _frameTimer.start(_idleRenderInterval); _throttleRendering = true; }