From 3cb8a61cfbedf769ec30136b02d4d291c0f700a0 Mon Sep 17 00:00:00 2001 From: supermerill Date: Mon, 4 Feb 2019 16:37:48 +0100 Subject: [PATCH] bugfix hardware option. --- src/slic3r/GUI/Tab.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 7e3d24914..03b067f48 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2410,11 +2410,11 @@ void TabPrinter::update_fff() get_field("retract_restart_extra_toolchange", i)->toggle (have_multiple_extruders && toolchange_retraction); } - - bool have_advanced_wipe_volume = m_config->opt_bool("wipe_advanced"); - for (auto el : { "wipe_advanced_nozzle_melted_volume", "wipe_advanced_multiplier", "wipe_advanced_algo" }) - get_field(el)->toggle(have_advanced_wipe_volume); - + if (m_has_single_extruder_MM_page) { + bool have_advanced_wipe_volume = m_config->opt_bool("wipe_advanced"); + for (auto el : { "wipe_advanced_nozzle_melted_volume", "wipe_advanced_multiplier", "wipe_advanced_algo" }) + get_field(el)->toggle(have_advanced_wipe_volume); + } Thaw(); }