From 5bb9ba64c2760fc5832b0f733e40ee8de051015d Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 9 Jan 2020 10:14:50 +0100 Subject: [PATCH] Fix of previous commit --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index f6396e8f7..abfa87a75 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -2812,7 +2812,7 @@ std::string GCode::extrude_infill(const Print &print, const std::vector(fill); + auto *eec = dynamic_cast(fill); if (eec) { for (ExtrusionEntity *ee : eec->chained_path_from(m_last_pos).entities) gcode += this->extrude_entity(*ee, "infill");