Fix for Layout and image_info related issues (#10258)

* bugfix78627

* stylefix

* fix
This commit is contained in:
Fedor Zharinov
2022-02-17 00:42:51 +03:00
committed by GitHub
parent 5cadee20eb
commit 00abcbacc4
3 changed files with 12 additions and 3 deletions

View File

@@ -317,7 +317,11 @@ std::map<std::string, std::vector<std::string>> parse_input_arguments(const std:
}
for (auto& file : files.second) {
readInputFilesArguments(mapped_files[files.first], file);
if (file == "image_info" || file == "random") {
mapped_files[files.first].push_back(file);
} else {
readInputFilesArguments(mapped_files[files.first], file);
}
}
}
args_it = files_end;