From 933a0db9ed558bacf93e7c1e9577a3753cae8d56 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 12 Dec 2016 15:33:14 +0100 Subject: [PATCH] Minor fix of bridging flow, see @alexrj 3a3b24ec7c803c58919a5401e5804261999875b4 --- xs/src/libslic3r/LayerRegion.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xs/src/libslic3r/LayerRegion.cpp b/xs/src/libslic3r/LayerRegion.cpp index 52e384adf..618396963 100644 --- a/xs/src/libslic3r/LayerRegion.cpp +++ b/xs/src/libslic3r/LayerRegion.cpp @@ -262,9 +262,7 @@ LayerRegion::process_external_surfaces(const Layer* lower_layer) BridgeDetector bd( initial, lower_layer->slices, - //FIXME parameters are not correct! - // flow(FlowRole role, bool bridge = false, double width = -1) const; - this->flow(frInfill, true, this->layer()->height).scaled_width() + this->flow(frInfill, true).scaled_width() ); #ifdef SLIC3R_DEBUG printf("Processing bridge at layer " PRINTF_ZU ":\n", this->layer()->id());