1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00

Suppressed editing of overridden options only if "filament_retract_length" == 0

This commit is contained in:
YuSanka
2019-07-30 12:06:51 +02:00
parent 253d755235
commit b7d6c93c36
+1 -1
View File
@@ -1579,7 +1579,7 @@ void TabFilament::update_filament_overrides_page()
const int extruder_idx = 0; // #ys_FIXME
const bool have_retract_length = m_config->option("filament_retract_length")->is_nil() ? false :
const bool have_retract_length = m_config->option("filament_retract_length")->is_nil() ||
m_config->opt_float("filament_retract_length", extruder_idx) > 0;
for (const std::string& opt_key : opt_keys)