From 1ef2b509e51ab7d6fe678f624a7a5e87e47ab9ec Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 13 Oct 2022 21:29:47 +0800 Subject: [PATCH] label objects by default --- 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 27d540043e..9fc4ad1f61 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -79,7 +79,7 @@ static const float g_min_purge_volume = 100.f; static const float g_purge_volume_one_time = 135.f; static const int g_max_flush_count = 4; -bool GCode::gcode_label_objects = false; +bool GCode::gcode_label_objects = true; // Only add a newline in case the current G-code does not end with a newline. static inline void check_add_eol(std::string& gcode)