Skip to content

Commit

Permalink
Added support for selecting images with "*.otif" extension in the fil…
Browse files Browse the repository at this point in the history
…e selector (#95)
  • Loading branch information
andreped authored Jan 10, 2024
1 parent a08c116 commit 8aa171e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gui/ProjectTab/ProjectWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ namespace fast {
void ProjectWidget::selectFile() {
// TODO: Unable to read .zvi and .scn (Zeiss and Leica). I'm wondering if they are stored in some unexpected way (not image pyramids)
auto fileNames = QFileDialog::getOpenFileNames(this, tr("Select File(s)"), nullptr,
tr("WSI Files (*.tiff *.tif *.svs *.ndpi *.bif *.vms *.vsi *.mrxs);;All Files(*)"), //*.zvi *.scn)"),
tr("WSI Files (*.tiff *.tif *.svs *.ndpi *.bif *.vms *.vsi *.mrxs *.otif);;All Files(*)"), //*.zvi *.scn)"),
nullptr, QFileDialog::DontUseNativeDialog);

auto progDialog = QProgressDialog(this);
Expand Down

0 comments on commit 8aa171e

Please sign in to comment.