From e987a6bf821976f7c5cbd4fa3f5cab4af157b05c Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Wed, 6 Aug 2025 18:11:26 +0800 Subject: [PATCH] FIX: should not show enable_wrapping_detection in printer preset jira: STUDIO-13848 Change-Id: I9d3c6b911721992e448b74e63b2b598f0240fa6e (cherry picked from commit 849723d6ebce7c342e56d7e8bb4b932db5bc42aa) --- src/libslic3r/Preset.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 1d699310ad..600ac025fa 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -1004,7 +1004,7 @@ static std::vector s_Preset_printer_options { "nozzle_height", "master_extruder_id", "default_print_profile", "inherits", "silent_mode", - "scan_first_layer", "enable_wrapping_detection", "wrapping_detection_layers", "wrapping_exclude_area", "machine_load_filament_time", "machine_unload_filament_time", "machine_tool_change_time", "time_cost", "machine_pause_gcode", "template_custom_gcode", + "scan_first_layer", "wrapping_detection_layers", "wrapping_exclude_area", "machine_load_filament_time", "machine_unload_filament_time", "machine_tool_change_time", "time_cost", "machine_pause_gcode", "template_custom_gcode", "nozzle_type", "nozzle_hrc","auxiliary_fan", "nozzle_volume","upward_compatible_machine", "z_hop_types", "travel_slope", "retract_lift_enforce","support_chamber_temp_control","support_air_filtration","printer_structure", "best_object_pos", "head_wrap_detect_zone", "host_type", "print_host", "printhost_apikey", "bbl_use_printhost", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 1aa46108b9..beee675519 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -4198,10 +4198,9 @@ void TabPrinter::build_fff() optgroup->append_single_option_line("pellet_modded_printer", "pellet-flow-coefficient"); optgroup->append_single_option_line("bbl_use_printhost"); optgroup->append_single_option_line("scan_first_layer"); - optgroup->append_single_option_line("enable_wrapping_detection"); - option = optgroup->get_option("wrapping_exclude_area"); - option.opt.full_width = true; - optgroup->append_single_option_line(option); + //option = optgroup->get_option("wrapping_exclude_area"); + //option.opt.full_width = true; + //optgroup->append_single_option_line(option); optgroup->append_single_option_line("disable_m73"); option = optgroup->get_option("thumbnails"); option.opt.full_width = true;