Fix error message shown when exporting mesh with wrong extension.

pull/109/merge
whitequark 2016-11-17 06:51:47 +00:00
parent 489ae66e96
commit c7277521f3
1 changed files with 1 additions and 1 deletions

View File

@ -834,7 +834,7 @@ void SolveSpaceUI::ExportMeshTo(const std::string &filename) {
ExportMeshAsThreeJsTo(f, filename, m, e);
} else {
Error("Can't identify output file type from file extension of "
"filename '%s'; try .stl, .obj, .js.", filename.c_str());
"filename '%s'; try .stl, .obj, .js, .html.", filename.c_str());
}
fclose(f);