Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Overhang Printable #1615

Merged
merged 16 commits into from
Jul 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Should check upper layer instead
  • Loading branch information
Noisyfox committed Jul 22, 2023
commit fe6b05c79738f72d5f1f0b1fc71f5ff3dbc7dfb8
2 changes: 1 addition & 1 deletion src/libslic3r/PrintObjectSlice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ void PrintObject::apply_conical_overhang() {
// layer->m_regions[region_id]->slices.surfaces);

// Disable on given region
if (layer->m_regions[region_id]->region().config().make_overhang_printable_disable) {
if (upper_layer->m_regions[region_id]->region().config().make_overhang_printable_disable) {
continue;
}

Expand Down