Fix "ping-pong reverse" ordering of frames when exporting

This commit is contained in:
Martín Capello 2023-12-07 16:53:30 -03:00
parent 4d8fc12351
commit 0ae3a23066

View File

@ -221,8 +221,8 @@ void SaveFileBaseCommand::saveDocumentInBackground(
m_selFrames = m_selFrames.makePingPong();
break;
case AniDir::PING_PONG_REVERSE:
m_selFrames = m_selFrames.makePingPong();
m_selFrames = m_selFrames.makeReverse();
m_selFrames = m_selFrames.makePingPong();
break;
}
}