Skip to content

Commit

Permalink
Bugfix: because of a typo, bridge acceleration wasn't applied anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Oct 14, 2014
1 parent 0d2dcbc commit 39b41fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Slic3r/GCode.pm
Expand Up @@ -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;
Expand Down

0 comments on commit 39b41fd

Please sign in to comment.