FIRE-34943: Fix rotation errors

meow-7.2.2
Angeldark Raymaker 2025-01-27 23:57:21 +00:00
parent 769d5c06c4
commit c84770a5aa
1 changed files with 3 additions and 3 deletions

View File

@ -1870,11 +1870,11 @@ void FSFloaterPoser::refreshRotationSlidersAndSpinners()
mLastSliderRotation = rotation;
mLimbYawSlider->setValue(rotation.mV[VX] *= RAD_TO_DEG);
mYawSpnr->setValue(rotation.mV[VX] *= RAD_TO_DEG);
mYawSpnr->setValue(rotation.mV[VX]);
mLimbPitchSlider->setValue(rotation.mV[VY] *= RAD_TO_DEG);
mPitchSpnr->setValue(rotation.mV[VY] *= RAD_TO_DEG);
mPitchSpnr->setValue(rotation.mV[VY]);
mLimbRollSlider->setValue(rotation.mV[VZ] *= RAD_TO_DEG);
mRollSpnr->setValue(rotation.mV[VZ] *= RAD_TO_DEG);
mRollSpnr->setValue(rotation.mV[VZ]);
}
void FSFloaterPoser::refreshAdvancedPositionSlidersAndSpinners()