Postpone seam picking for spNearest configuration to the place_seam method.

This commit is contained in:
PavelMikus 2022-04-13 15:00:18 +02:00
parent 83f3ca27dc
commit 137fa35238

View File

@ -1308,6 +1308,7 @@ void SeamPlacer::init(const Print &print) {
BOOST_LOG_TRIVIAL(debug)
<< "SeamPlacer: calculate_overhangs and layer embdedding: end";
if (configured_seam_preference != spNearest) { // For spNearest, the seam is picked in the place_seam method with actual nozzle position information
BOOST_LOG_TRIVIAL(debug)
<< "SeamPlacer: pick_seam_point : start";
//pick seam point
@ -1326,6 +1327,7 @@ void SeamPlacer::init(const Print &print) {
});
BOOST_LOG_TRIVIAL(debug)
<< "SeamPlacer: pick_seam_point : end";
}
if (configured_seam_preference == spAligned) {
BOOST_LOG_TRIVIAL(debug)