mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-17 17:06:49 +08:00
Avoid uninitialized value in concatenation at line 347.
This commit is contained in:
parent
142a6cc4eb
commit
6019836eef
@ -514,7 +514,7 @@ sub _limit_frequency {
|
|||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($point) = @_;
|
my ($point) = @_;
|
||||||
|
|
||||||
return if $Slic3r::Config->vibration_limit == 0;
|
return '' if $Slic3r::Config->vibration_limit == 0;
|
||||||
my $min_time = 1 / ($Slic3r::Config->vibration_limit * 60); # in minutes
|
my $min_time = 1 / ($Slic3r::Config->vibration_limit * 60); # in minutes
|
||||||
|
|
||||||
# calculate the move vector and move direction
|
# calculate the move vector and move direction
|
||||||
|
Loading…
x
Reference in New Issue
Block a user