mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Bugfix: because of a typo, bridge acceleration wasn't applied anymore. #2296
This commit is contained in:
parent
0d2dcbc85b
commit
39b41fda12
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ sub _extrude_path {
|
|||
$acceleration = $self->config->perimeter_acceleration;
|
||||
} elsif ($self->config->infill_acceleration && $path->is_fill) {
|
||||
$acceleration = $self->config->infill_acceleration;
|
||||
} elsif ($self->config->infill_acceleration && $path->is_bridge) {
|
||||
} elsif ($self->config->bridge_acceleration && $path->is_bridge) {
|
||||
$acceleration = $self->config->bridge_acceleration;
|
||||
} else {
|
||||
$acceleration = $self->config->default_acceleration;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue