From ed6cc6319dfe5e4868aab3a3ea57101d6e97298f Mon Sep 17 00:00:00 2001 From: Angeldark Raymaker Date: Mon, 9 Dec 2024 23:36:29 +0000 Subject: [PATCH] FIRE-34884: Add undo to clone Mirror and Sympathetic were not undo-ing the opposite joint --- indra/newview/fsjointpose.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/fsjointpose.cpp b/indra/newview/fsjointpose.cpp index aa605e9f55..b6bb99bf95 100644 --- a/indra/newview/fsjointpose.cpp +++ b/indra/newview/fsjointpose.cpp @@ -179,6 +179,7 @@ void FSJointPose::cloneRotationFrom(FSJointPose* fromJoint) if (!fromJoint) return; + addToUndo(mRotation, &mUndoneRotationIndex, &mLastSetRotationDeltas, &mTimeLastUpdatedRotation); mRotation = FSJointRotation(fromJoint->mRotation); }