From c60669b293b6d59ce2387049d3842fcb25e277cc Mon Sep 17 00:00:00 2001 From: SoftFever Date: Tue, 2 May 2023 22:16:05 +0800 Subject: [PATCH] User definable retraction length for filament change #903 --- src/slic3r/GUI/Tab.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index e15bfe0d77..849c3a1af5 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3650,7 +3650,8 @@ void TabPrinter::toggle_options() is_BBL_printer = m_preset_bundle->printers.get_edited_preset().is_bbl_vendor_preset(m_preset_bundle); } - bool have_multiple_extruders = m_extruders_count > 1; + bool have_multiple_extruders = true; + //m_extruders_count > 1; //if (m_active_page->title() == "Custom G-code") { // toggle_option("change_filament_gcode", have_multiple_extruders); //}