From 4bd6ef61f46032ddc63096581a6d40226d47c690 Mon Sep 17 00:00:00 2001 From: supermerill Date: Wed, 14 Nov 2018 20:04:35 +0100 Subject: [PATCH] Debug gap fill option (now it activate the gap fill speed option) --- xs/src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/slic3r/GUI/Tab.cpp b/xs/src/slic3r/GUI/Tab.cpp index d37bc5289..c94ba67b1 100644 --- a/xs/src/slic3r/GUI/Tab.cpp +++ b/xs/src/slic3r/GUI/Tab.cpp @@ -1227,7 +1227,7 @@ void TabPrint::update() "infill_speed", "bridge_speed" }) get_field(el)->toggle(have_infill || have_solid_infill); - get_field("gap_fill_speed")->toggle(have_perimeters && m_config->option("gap_fill")); + get_field("gap_fill_speed")->toggle(have_perimeters && m_config->opt_bool("gap_fill")); bool have_top_solid_infill = m_config->opt_int("top_solid_layers") > 0; for (auto el : { "top_infill_extrusion_width", "top_solid_infill_speed" })