From 4cb35029a3a2b60405b4912a810814d93e1ab27a Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 6 May 2018 22:43:02 -0500 Subject: [PATCH] stubbed in constant for turning on/off threading (mostly to reduce complexity when testing feature code) --- src/GUI/misc_ui.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GUI/misc_ui.hpp b/src/GUI/misc_ui.hpp index eebefd015..28c28377d 100644 --- a/src/GUI/misc_ui.hpp +++ b/src/GUI/misc_ui.hpp @@ -45,6 +45,8 @@ constexpr bool isDev = true; constexpr bool isDev = false; #endif +constexpr bool threaded = false; + // hopefully the compiler is smart enough to figure this out const std::map FILE_WILDCARDS { std::make_pair("known", "Known files (*.stl, *.obj, *.amf, *.xml, *.3mf)|*.3mf;*.3MF;*.stl;*.STL;*.obj;*.OBJ;*.amf;*.AMF;*.xml;*.XML"),