From 4c984be9640efb4b104356b0be80180712358174 Mon Sep 17 00:00:00 2001 From: manongjohn Date: Thu, 13 Jan 2022 23:29:23 -0500 Subject: [PATCH] Fix mesh stop frames loading incorrectly --- toonz/sources/toonzlib/txshmeshcolumn.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toonz/sources/toonzlib/txshmeshcolumn.cpp b/toonz/sources/toonzlib/txshmeshcolumn.cpp index 7e0080d1..27e09edb 100644 --- a/toonz/sources/toonzlib/txshmeshcolumn.cpp +++ b/toonz/sources/toonzlib/txshmeshcolumn.cpp @@ -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);