mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-13 04:19:03 +08:00
Bugfix: wrong arguments supplied to Flow constructor (rarely used case)
This commit is contained in:
parent
66b57a84de
commit
5435d88924
@ -119,7 +119,7 @@ sub new {
|
|||||||
my ($class, %args) = @_;
|
my ($class, %args) = @_;
|
||||||
|
|
||||||
my $self = $class->_new(
|
my $self = $class->_new(
|
||||||
@args{qw(width spacing nozzle_diameter)},
|
@args{qw(width height nozzle_diameter)},
|
||||||
);
|
);
|
||||||
$self->set_bridge($args{bridge} // 0);
|
$self->set_bridge($args{bridge} // 0);
|
||||||
return $self;
|
return $self;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user