From 5da2278f66ddf45d1c48dcb2d847f95664818c52 Mon Sep 17 00:00:00 2001 From: supermerill Date: Thu, 1 Oct 2020 01:16:13 +0200 Subject: [PATCH] #509 fix Fan Startup Delay that where wrongly deactivated --- 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 60103e980..8f51e10a4 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -3873,7 +3873,7 @@ void GCode::_write(FILE* file, const char *what) //const char * gcode_pp = _post_process(what).c_str(); std::string str_preproc{ what }; - //_post_process(str_preproc); + _post_process(str_preproc); const std::string str_ana = m_analyzer.process_gcode(str_preproc);