Fix issue that is_infill_first doesn't work correctly on regions (#8126)

Fix issue that `is_infill_first` doesn't work correctly on regions (SoftFever/OrcaSlicer#8111)
This commit is contained in:
Noisyfox
2025-01-22 10:04:03 +08:00
committed by GitHub
parent 68997f260f
commit 74cf736903
3 changed files with 15 additions and 27 deletions

View File

@@ -168,6 +168,8 @@ void Layer::make_perimeters()
const PrintRegionConfig &other_config = other_layerm->region().config();
if (config.wall_filament == other_config.wall_filament
&& config.wall_loops == other_config.wall_loops
&& config.wall_sequence == other_config.wall_sequence
&& config.is_infill_first == other_config.is_infill_first
&& config.inner_wall_speed == other_config.inner_wall_speed
&& config.outer_wall_speed == other_config.outer_wall_speed
&& config.small_perimeter_speed == other_config.small_perimeter_speed