Change the spacemouse driver flag to true for windows by default

(cherry picked from commit b92f62337f)
This commit is contained in:
Marek Roszko 2023-05-07 12:12:20 -04:00 committed by Mark Roszko
parent ce5f72207e
commit edc9d38680
1 changed files with 8 additions and 1 deletions

View File

@ -330,7 +330,14 @@ ADVANCED_CFG::ADVANCED_CFG()
m_3DRT_BevelExtentFactor = 1.0 / 16.0; m_3DRT_BevelExtentFactor = 1.0 / 16.0;
m_UseClipper2 = true; m_UseClipper2 = true;
#ifdef _WIN32
// spacemouse is largely stable on Windows
m_Use3DConnexionDriver = true;
#else
m_Use3DConnexionDriver = false; m_Use3DConnexionDriver = false;
#endif
m_IncrementalConnectivity = false; m_IncrementalConnectivity = false;
loadFromConfigFile(); loadFromConfigFile();