Fix mesh stop frames loading incorrectly

This commit is contained in:
manongjohn 2022-01-13 23:29:23 -05:00
parent 339f98d085
commit 4c984be964

View file

@ -23,6 +23,8 @@ TFrameId qstringToFrameId(QString str) {
return TFrameId::EMPTY_FRAME;
else if (str == "-" || str == "-2")
return TFrameId::NO_FRAME;
else if (str == "x" || str == "-3")
return TFrameId::STOP_FRAME;
QString regExpStr = QString("^%1$").arg(TFilePath::fidRegExpStr());
QRegExp rx(regExpStr);