mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 07:19:05 +08:00
Bugfix: hard errors when extrusion width was left empty.
This commit is contained in:
parent
2ce697f2b9
commit
8ce2c23e52
@ -3,7 +3,7 @@ package Slic3r;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
our $VERSION = "0.5.2";
|
||||
our $VERSION = "0.5.3beta";
|
||||
|
||||
our $debug = 0;
|
||||
sub debugf {
|
||||
@ -57,7 +57,7 @@ our $resolution = 0.00000001;
|
||||
our $layer_height = 0.4;
|
||||
our $first_layer_height_ratio = 1;
|
||||
our $infill_every_layers = 1;
|
||||
our $extrusion_width_ratio = undef;
|
||||
our $extrusion_width_ratio = 0;
|
||||
our $flow_speed_ratio = 1.1;
|
||||
our $flow_width;
|
||||
|
||||
|
@ -70,7 +70,7 @@ our $Options = {
|
||||
type => 'f',
|
||||
},
|
||||
'extrusion_width_ratio' => {
|
||||
label => 'Extrusion width (ratio over layer height; leave empty to calculate automatically)',
|
||||
label => 'Extrusion width (ratio over layer height; leave zero to calculate automatically)',
|
||||
type => 'f',
|
||||
},
|
||||
'first_layer_height_ratio' => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user