Change the spacemouse driver flag to true for windows by default

This commit is contained in:
Marek Roszko 2023-05-07 12:12:20 -04:00
parent c7eaef2d13
commit b92f62337f
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_UseClipper2 = true;
m_Use3DConnexionDriver = false;
#ifdef _WIN32
// spacemouse is largely stable on Windows
m_Use3DConnexionDriver = true;
#else
m_Use3DConnexionDriver = false;
#endif
m_IncrementalConnectivity = false;
loadFromConfigFile();