mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-11 01:19:07 +08:00
Added missing encoding in STL repair
This commit is contained in:
parent
4be1e5702a
commit
bb37048c35
@ -229,9 +229,9 @@ sub repair_stl {
|
||||
}
|
||||
|
||||
my $tmesh = Slic3r::TriangleMesh->new;
|
||||
$tmesh->ReadSTLFile($input_file);
|
||||
$tmesh->ReadSTLFile(Slic3r::encode_path($input_file));
|
||||
$tmesh->repair;
|
||||
$tmesh->WriteOBJFile($output_file);
|
||||
$tmesh->WriteOBJFile(Slic3r::encode_path($output_file));
|
||||
Slic3r::GUI::show_info($self, "Your file was repaired.", "Repair");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user