From 54ca51f3de2a5e3ca1d9e9538c51a28b59acabcf Mon Sep 17 00:00:00 2001 From: Rob Trame Date: Wed, 1 Nov 2023 20:15:15 -0600 Subject: [PATCH] Remove duplicate retract_lift_above/below definitions --- src/libslic3r/PrintConfig.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index ee964e7d0f..3dc98ff325 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3073,20 +3073,6 @@ def = this->add("filament_loading_speed", coFloats); def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnumsGeneric{ ZHopType::zhtNormal }); - def = this->add("retract_lift_above", coFloats); - def->label = L("Only lift Z above"); - def->tooltip = L("If you set this to a positive value, Z lift will only take place above the specified absolute Z."); - def->sidetext = L("mm"); - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloats{0.}); - - def = this->add("retract_lift_below", coFloats); - def->label = L("Only lift Z below"); - def->tooltip = L("If you set this to a positive value, Z lift will only take place below the specified absolute Z."); - def->sidetext = L("mm"); - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloats{0.}); - def = this->add("retract_lift_enforce", coEnums); def->label = L("On surfaces"); def->tooltip = L("Enforce Z Hop behavior. This setting is impacted by the above settings (Only lift Z above/below).");