Fix #119203: fix SpaceMouse (NDOF) Deadzone value #119522

Merged
Pratik Borhade merged 1 commits from kgalik/blender:spacemouse-deadzone into blender-v4.1-release 2024-03-18 10:10:31 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ const UserDef U_default = {
.pressure_softness = 0.0,
.ndof_sensitivity = 4.0,
.ndof_orbit_sensitivity = 4.0,
.ndof_deadzone = 0.1,
.ndof_deadzone = 0.0,
.ndof_flag = (NDOF_MODE_ORBIT | NDOF_LOCK_HORIZON | NDOF_SHOULD_PAN | NDOF_SHOULD_ZOOM |
NDOF_SHOULD_ROTATE |
/* Software from the driver authors follows this convention

View File

@ -481,7 +481,7 @@ void blo_do_versions_userdef(UserDef *userdef)
}
if (!USER_VERSION_ATLEAST(275, 2)) {
userdef->ndof_deadzone = 0.1;
userdef->ndof_deadzone = 0.0;
}
if (!USER_VERSION_ATLEAST(275, 4)) {