mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-10 16:21:50 +08:00
Suppressed editing of overridden options only if "filament_retract_length" == 0
This commit is contained in:
parent
253d755235
commit
b7d6c93c36
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user