Skip to content

Commit

Permalink
Fix previous copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Mar 7, 2024
1 parent 288faff commit 1b9fe0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SkirtBrim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,8 @@ std::vector<Polygons> SkirtBrim::generateAllowedAreas(const std::vector<Polygons
constexpr bool include_support = true;
constexpr bool include_prime_tower = true;
constexpr bool include_model = false;
extruder_outlines.models_outlines = storage_.getLayerOutlines(layer_nr, include_support, include_prime_tower, external_polys_only, extruder_nr, include_model);
extruder_outlines.supports_outlines
= storage_.getLayerOutlines(layer_nr, include_support, include_prime_tower, external_polys_only, extruder_nr, include_model);
}
}
}
Expand Down

0 comments on commit 1b9fe0d

Please sign in to comment.