Skip to content

Commit

Permalink
bugfix hardware option.
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Feb 4, 2019
1 parent 4e53d9b commit 3cb8a61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/slic3r/GUI/Tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 3cb8a61

Please sign in to comment.