Merge branch 'blender-v4.1-release'

This commit is contained in:
Pratik Borhade 2024-03-18 14:43:15 +05:30
commit b3095d9c2e
2 changed files with 2 additions and 2 deletions

@ -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

@ -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)) {