Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2014-12-28 19:29:21 +0300
committerAlessandro Ranellucci <aar@cpan.org>2014-12-28 19:29:21 +0300
commit5d4d79191a10e7542b8bf5515d4d39554d43e8cb (patch)
tree923fe9b1271f09fed302a3b596fbe3aeb67b7fe6
parent959eb60ad08e9dc7450d56da735abf001ef48be2 (diff)
Fixed regression causing bridges not to be printed with rectilinear pattern when --external-fill-pattern was set. #2460
-rw-r--r--lib/Slic3r/Fill.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/Fill.pm b/lib/Slic3r/Fill.pm
index 504230933..1881d461b 100644
--- a/lib/Slic3r/Fill.pm
+++ b/lib/Slic3r/Fill.pm
@@ -187,7 +187,7 @@ sub make_fill {
if ($surface->is_solid) {
$density = 100;
$filler = 'rectilinear';
- if ($surface->is_external) {
+ if ($surface->is_external && !$is_bridge) {
$filler = $layerm->config->external_fill_pattern;
}
} else {