From 97397ba6cb4fdd0697c1fafc4be922a1332d6095 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 17 Feb 2023 16:29:57 +0100 Subject: [PATCH] Increased the backtracing time to 120 s --- src/libslic3r/GCode/GCodeProcessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp index 2c482f6ac..6c87792aa 100644 --- a/src/libslic3r/GCode/GCodeProcessor.cpp +++ b/src/libslic3r/GCode/GCodeProcessor.cpp @@ -4018,10 +4018,10 @@ void GCodeProcessor::post_process() unsigned int line_id = 0; #if ENABLE_GCODE_POSTPROCESS_BACKTRACE // Backtrace data for Tx gcode lines - static const ExportLines::Backtrace backtrace_T = { 60.0f, 10 }; + static const ExportLines::Backtrace backtrace_T = { 120.0f, 10 }; // In case there are multiple sources of backtracing, keeps track of the longest backtrack time needed // to flush the backtrace cache accordingly - float max_backtrace_time = 60.0f; + float max_backtrace_time = 120.0f; #else std::vector> offsets; #endif // ENABLE_GCODE_POSTPROCESS_BACKTRACE