From a2d65c0c6a065ddb9336e90c9e590ffcdd6a65e3 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Mon, 10 Oct 2022 17:35:28 +0800 Subject: [PATCH] FIX: do not use interface support filament for default support Change-Id: Ieb9da1df74b17e81a0fdb4d0b7e9bead54d8bb96 (cherry picked from commit b54caf82b1bc6d2097188c75c57e2f4e6b7792fc) --- src/libslic3r/GCode/ToolOrdering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode/ToolOrdering.cpp b/src/libslic3r/GCode/ToolOrdering.cpp index 24c1d7911..bd6babb97 100644 --- a/src/libslic3r/GCode/ToolOrdering.cpp +++ b/src/libslic3r/GCode/ToolOrdering.cpp @@ -958,7 +958,7 @@ float WipingExtrusions::mark_wiping_extrusions(const Print& print, unsigned int return std::max(0.f, volume_to_wipe); // Soluble filament cannot be wiped in a random infill, neither the filament after it // BBS - if (print.config().filament_is_support.get_at(old_extruder)) + if (print.config().filament_is_support.get_at(old_extruder) || print.config().filament_is_support.get_at(new_extruder)) return std::max(0.f, volume_to_wipe); // Support filament cannot be used to print support, infill, wipe_tower, etc. // we will sort objects so that dedicated for wiping are at the beginning: