fix effect export

@brindosch ... hopefully that solves your problem
This commit is contained in:
redPanther 2016-10-13 22:58:16 +02:00 committed by GitHub
parent 464de381a0
commit 838ec928d8
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ int main(int argc, char** argv)
if (directory.exists() && destDir.exists())
{
std::cout << "extract to folder: " << std::endl;
QStringList filenames = directory.entryList(QStringList() << "*.json", QDir::Files, QDir::Name | QDir::IgnoreCase);
QStringList filenames = directory.entryList(QStringList() << "*", QDir::Files, QDir::Name | QDir::IgnoreCase);
foreach (const QString & filename, filenames)
{
if (QFile::exists(destDir.dirName()+"/"+filename))