Skip to content

Commit

Permalink
ElmerGui, minor fix to account for toLower() of FDNEUT, must compare the
Browse files Browse the repository at this point in the history
input to lower case 'fdneut'.  Needed in order to successfully load any
FDNEUT input file.
  • Loading branch information
richb2k committed Jan 9, 2025
1 parent bd68819 commit fd4ba4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElmerGUI/Application/src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ void MainWindow::readInputFile(QString fileName) {
tetlibInputOk = true;
}

} else if ((fileSuffix == "grd") || (fileSuffix == "FDNEUT") ||
} else if ((fileSuffix == "grd") || (fileSuffix == "fdneut") ||
(fileSuffix == "msh") || (fileSuffix == "mphtxt") ||
(fileSuffix == "inp") || (fileSuffix == "unv") ||
(fileSuffix == "plt")) {
Expand Down

0 comments on commit fd4ba4c

Please sign in to comment.