From a240478c306998def94fffdf4934be799d66acb8 Mon Sep 17 00:00:00 2001 From: discip <53649486+discip@users.noreply.github.com> Date: Tue, 23 Dec 2025 21:43:14 +0100 Subject: [PATCH] make support speed visible independent of support state (#10916) --- src/slic3r/GUI/ConfigManipulation.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index 60828cedcf..8254afda2d 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -774,10 +774,11 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co // Orca: Force solid support interface when using support ironing toggle_field("support_interface_spacing", have_support_material && have_support_interface && !has_support_ironing); - bool have_skirt_height = have_skirt && - (config->opt_int("skirt_height") > 1 || config->opt_enum("draft_shield") != dsEnabled); - toggle_line("support_speed", have_support_material || have_skirt_height); - toggle_line("support_interface_speed", have_support_material && have_support_interface); +// see issue #10915 +// bool have_skirt_height = have_skirt && +// (config->opt_int("skirt_height") > 1 || config->opt_enum("draft_shield") != dsEnabled); +// toggle_line("support_speed", have_support_material || have_skirt_height); +// toggle_line("support_interface_speed", have_support_material && have_support_interface); // BBS //toggle_field("support_material_synchronize_layers", have_support_soluble);