Skip to content

Commit

Permalink
FIX: do not generate sheath for normal support
Browse files Browse the repository at this point in the history
Jira: none
Change-Id: I8f3f3e39171055f8d18c06ceee8e245594273238
(cherry picked from commit 93bc7ecf4346f179f502bebc3cf47b0030b56e2c)
  • Loading branch information
ArthurBambulab authored and lanewei120 committed Nov 9, 2023
1 parent 134f083 commit 0e71658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/Support/SupportParameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ struct SupportParameters {
}

SupportMaterialPattern support_pattern = object_config.support_base_pattern;
this->with_sheath = object_config.tree_support_wall_count > 0;
this->with_sheath = is_tree(object_config.support_type) && object_config.tree_support_wall_count > 0;
this->base_fill_pattern =
support_pattern == smpHoneycomb ? ipHoneycomb :
this->support_density > 0.95 || this->with_sheath ? ipRectilinear : ipSupportBase;
Expand Down

0 comments on commit 0e71658

Please sign in to comment.