From 13c3c3223796fcb8ab9d4201d42fe05ca8bde98e Mon Sep 17 00:00:00 2001 From: "jiangkai.zhao" Date: Tue, 11 Feb 2025 18:12:06 +0800 Subject: [PATCH] Fix: the width is not effective after enabling the ribbed outer wall jira: STUDIO-10294 Change-Id: I08bd00c3c3ef643f4226ce0b882cd62ff680ae65 (cherry picked from commit cfeb574422741bbe48747aa7305fea2a13b6d834) --- src/slic3r/GUI/ConfigManipulation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index fa010f1646..170ead5ceb 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -765,6 +765,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co bool have_rib_wall = config->opt_bool("prime_tower_rib_wall")&&have_prime_tower; for (auto el : {"prime_tower_extra_rib_length", "prime_tower_rib_width", "prime_tower_fillet_wall"}) toggle_line(el, have_rib_wall); + toggle_field("prime_tower_width", !have_rib_wall); for (auto el : {"wall_filament", "sparse_infill_filament", "solid_infill_filament", "wipe_tower_filament"}) toggle_line(el, !bSEMM);