From b3285050eda7fb8080b023a52391b716b8f7126c Mon Sep 17 00:00:00 2001 From: amerhifi Date: Tue, 21 May 2019 09:43:09 -0700 Subject: [PATCH] moving the properties out of the define since the values are going to be the same either way --- interface/src/ui/Stats.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/interface/src/ui/Stats.h b/interface/src/ui/Stats.h index 8fdced40b3..cb13945320 100644 --- a/interface/src/ui/Stats.h +++ b/interface/src/ui/Stats.h @@ -314,14 +314,13 @@ class Stats : public QQuickItem { STATS_PROPERTY(QVector3D, parabolaPicksUpdated, QVector3D(0, 0, 0)) STATS_PROPERTY(QVector3D, collisionPicksUpdated, QVector3D(0, 0, 0)) -#ifdef DEBUG_EVENT_QUEUE - STATS_PROPERTY(bool, eventQueueDebuggingOn, true) STATS_PROPERTY(int, mainThreadQueueDepth, -1); STATS_PROPERTY(int, nodeListThreadQueueDepth, -1); + +#ifdef DEBUG_EVENT_QUEUE + STATS_PROPERTY(bool, eventQueueDebuggingOn, true) #else STATS_PROPERTY(bool, eventQueueDebuggingOn, false) - STATS_PROPERTY(int, mainThreadQueueDepth, 0); - STATS_PROPERTY(int, nodeListThreadQueueDepth, 0); #endif // DEBUG_EVENT_QUEUE public: