From 4ff95094a3afdaba00bcbdeb3fc891de3fa4e546 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Wed, 2 Aug 2023 20:24:28 -0500 Subject: [PATCH] Disable thresholding by default --- scwx-qt/source/scwx/qt/manager/placefile_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/manager/placefile_manager.cpp b/scwx-qt/source/scwx/qt/manager/placefile_manager.cpp index ef1696fb..978f37d8 100644 --- a/scwx-qt/source/scwx/qt/manager/placefile_manager.cpp +++ b/scwx-qt/source/scwx/qt/manager/placefile_manager.cpp @@ -76,7 +76,7 @@ public: std::string name_; std::shared_ptr placefile_; bool enabled_; - bool thresholded_ {true}; + bool thresholded_ {false}; boost::asio::thread_pool threadPool_ {1u}; boost::asio::steady_timer refreshTimer_ {threadPool_}; std::mutex refreshMutex_ {};