fixed compilation in parameter handling

This commit is contained in:
csoler 2024-02-13 16:24:32 +01:00
parent c5aface2cb
commit 9210e52aae
4 changed files with 14 additions and 5 deletions

View file

@ -1704,7 +1704,8 @@ void MainWindow::openRsCollection(const QString &filename)
if (qinfo.exists()) {
if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) {
RsCollection collection;
collection.openColl(qinfo.absoluteFilePath());
collection.downloadFiles();
//collection.openColl(qinfo.absoluteFilePath());
}
}
}