Skip to content

Commit 048a7d9

Browse files
authored
Merge pull request o3de#17637 from aws-lumberyard-dev/GHI_17635_AnimGraphRecording_EventHoverCrash
Fix Animation Event Node Tooltip Recording Crash
2 parents dcbab80 + 18955da commit 048a7d9

File tree

1 file changed

+1
-1
lines changed
  • Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView

1 file changed

+1
-1
lines changed

Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2585,7 +2585,7 @@ namespace EMStudio
25852585
EMotionFX::AnimGraphNode* curNode = node->GetParentNode();
25862586
while (curNode)
25872587
{
2588-
nodePath.emplace(0, curNode);
2588+
nodePath.emplace(nodePath.begin(), curNode);
25892589
curNode = curNode->GetParentNode();
25902590
}
25912591

0 commit comments

Comments
 (0)