mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Fix error in autospeed. #2810
This commit is contained in:
parent
e90f5fde4e
commit
8613e174e7
2 changed files with 4 additions and 3 deletions
|
@ -75,8 +75,9 @@ sub BUILD {
|
|||
}
|
||||
}
|
||||
}
|
||||
my $min_mm3_per_mm = min(@mm3_per_mm) // 0;
|
||||
if ($min_mm3_per_mm > 0) {
|
||||
@mm3_per_mm = grep $_ != 0, @mm3_per_mm;
|
||||
if (@mm3_per_mm) {
|
||||
my $min_mm3_per_mm = min(@mm3_per_mm);
|
||||
# In order to honor max_print_speed we need to find a target volumetric
|
||||
# speed that we can use throughout the print. So we define this target
|
||||
# volumetric speed as the volumetric speed produced by printing the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue