Skip to content

Commit

Permalink
Fix bug with loading image stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
davidborland committed Jan 6, 2020
1 parent b5d3fb8 commit 4a28332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainWindow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void MainWindow::on_actionOpen_Image_Stack_triggered() {
}

// Load data
VisualizationContainer::FileErrorCode errorCode = visualizationContainer->OpenImageFile(fileName.toStdString());
VisualizationContainer::FileErrorCode errorCode = visualizationContainer->OpenImageStack(fileNames);

if (errorCode != VisualizationContainer::Success) {
QMessageBox errorMessage;
Expand Down

0 comments on commit 4a28332

Please sign in to comment.