From 2a08bf026f2d46530a09aed9379324650d3b536d Mon Sep 17 00:00:00 2001 From: Argo <52103738+Argolein@users.noreply.github.com> Date: Sun, 7 Jun 2026 08:12:44 +0200 Subject: [PATCH] Bugfix: VFA calibration disables input shaping (Marlin 2) (#14079) VFA calibration does not disable input shaping anymore --- src/slic3r/GUI/Plater.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 7959ba6c6f..c8cfeb156d 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -13289,8 +13289,6 @@ void Plater::calib_VFA(const Calib_Params& params) auto filament_config = &wxGetApp().preset_bundle->filaments.get_edited_preset().config; auto printer_config = &wxGetApp().preset_bundle->printers.get_edited_preset().config; printer_config->set_key_value("resonance_avoidance", new ConfigOptionBool{false}); - printer_config->set_key_value("input_shaping_emit", new ConfigOptionBool{true}); - printer_config->set_key_value("input_shaping_type", new ConfigOptionEnum(InputShaperType::Disable)); filament_config->set_key_value("slow_down_layer_time", new ConfigOptionFloats { 0.0 }); print_config->set_key_value("enable_overhang_speed", new ConfigOptionBool { false }); print_config->set_key_value("timelapse_type", new ConfigOptionEnum(tlTraditional));