diff --git a/interface/src/GLCanvas.cpp b/interface/src/GLCanvas.cpp index ea04002ddb..504a07d3ed 100644 --- a/interface/src/GLCanvas.cpp +++ b/interface/src/GLCanvas.cpp @@ -13,9 +13,11 @@ #include #include +const int MSECS_PER_FRAME_WHEN_THROTTLED = 66; + GLCanvas::GLCanvas() : QGLWidget(QGLFormat(QGL::NoDepthBuffer)), _throttleRendering(false), - _idleRenderInterval(64) + _idleRenderInterval(MSECS_PER_FRAME_WHEN_THROTTLED) { }