Fix bug where tryParseJsonFile() wasn't explicitly returning true

This commit is contained in:
Marcus Huderle 2019-04-24 17:26:08 -05:00
parent cf32047e46
commit 13e3e660e9

View file

@ -1873,4 +1873,5 @@ bool Project::tryParseJsonFile(QJsonDocument *out, QString filepath)
}
*out = jsonDoc;
return true;
}