mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 21:27:52 -06:00
Fixed the "Export SVG..." menu item. #399
This commit is contained in:
parent
5eae22f8b0
commit
8aa20cd784
2 changed files with 6 additions and 8 deletions
|
@ -332,10 +332,7 @@ sub export_svg {
|
|||
my $self = shift;
|
||||
my %params = @_;
|
||||
|
||||
$_->slice for @{$self->objects};
|
||||
unless ($params{keep_meshes}) {
|
||||
$_->mesh(undef) for @{$self->objects}; # free memory
|
||||
}
|
||||
$_->slice(keep_meshes => $params{keep_meshes}) for @{$self->objects};
|
||||
$self->arrange_objects;
|
||||
|
||||
my $output_file = $self->expanded_output_filepath($params{output_file});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue