Skip to content
Snippets Groups Projects
Commit 47d0e8bf authored by Langella Olivier's avatar Langella Olivier
Browse files

load multiples tandem files in different directories

parent ca18e39c
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,9 @@ void LoadResultsDialog::chooseFiles() {
if (filenames.size() > 0) {
settings.setValue("path/identificationfiles", QFileInfo(filenames[0]).absolutePath());
}
_p_file_list->setStringList(filenames);
QStringList file_list = _p_file_list->stringList();
file_list.append(filenames);
_p_file_list->setStringList(file_list);
ui->file_list_view->setModel(_p_file_list);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment