We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7de32 commit 1419b99Copy full SHA for 1419b99
src/Modules/DataIO/WriteMatrix.cc
@@ -111,11 +111,12 @@ bool WriteMatrixModule::useCustomExporter(const std::string& filename) const
111
112
return !(ft == "" ||
113
ft == "SCIRun Matrix Binary" ||
114
- ft == "SCIRun Matrix ASCII");
+ ft == "SCIRun Matrix ASCII" ||
115
+ ft == defaultFileTypeName());
116
}
117
118
std::string WriteMatrixModule::defaultFileTypeName() const
119
{
120
MatrixIEPluginManager mgr;
- return defaultImportTypeForFile(&mgr);
121
+ return defaultExportTypeForFile(&mgr);
122
0 commit comments