From 66af505d5d9bcde5e62f829ef74d7b46a111f801 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 21 Jul 2019 00:29:46 -0500 Subject: [PATCH] Don't disable bridge_speed in GUI when no infill configured. Bridge speed is still used when overhang perimeters are present, which means that it cannot be disabled if there is no infill. Fixes #4842 --- lib/Slic3r/GUI/PresetEditor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/PresetEditor.pm b/lib/Slic3r/GUI/PresetEditor.pm index 8dd307e80..ef41aa863 100644 --- a/lib/Slic3r/GUI/PresetEditor.pm +++ b/lib/Slic3r/GUI/PresetEditor.pm @@ -919,7 +919,7 @@ sub _update { if (any { /$opt_key/ } qw(all_keys top_solid_layers bottom_solid_layers fill_density)) { $self->get_field($_)->toggle($have_infill || $have_solid_infill) - for qw(fill_angle infill_extrusion_width infill_speed bridge_speed); + for qw(fill_angle infill_extrusion_width infill_speed); } if (any { /$opt_key/ } qw(all_keys fill_density perimeters)) {