Export STL - check path extension in lower case. #10000

This commit is contained in:
David Kocik 2023-03-10 15:21:20 +01:00
parent 035997a049
commit c2fe61261d

View File

@ -6503,9 +6503,9 @@ void Plater::export_stl_obj(bool extended, bool selection_only)
} }
} }
if (path.EndsWith(".stl")) if (path.Lower().EndsWith(".stl"))
Slic3r::store_stl(path_u8.c_str(), &mesh, true); Slic3r::store_stl(path_u8.c_str(), &mesh, true);
else if (path.EndsWith(".obj")) else if (path.Lower().EndsWith(".obj"))
Slic3r::store_obj(path_u8.c_str(), &mesh); Slic3r::store_obj(path_u8.c_str(), &mesh);
// p->statusbar()->set_status_text(format_wxstr(_L("STL file exported to %s"), path)); // p->statusbar()->set_status_text(format_wxstr(_L("STL file exported to %s"), path));
} }