mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 09:02:06 +00:00
Fixed an issue that tall skirt is generated when ooze prevention and skirt are both enabled.
This commit is contained in:
@@ -499,7 +499,10 @@ std::vector<ObjectID> Print::print_object_ids() const
|
||||
|
||||
bool Print::has_infinite_skirt() const
|
||||
{
|
||||
return (m_config.draft_shield == dsEnabled && m_config.skirt_loops > 0) || (m_config.ooze_prevention && this->extruders().size() > 1);
|
||||
// Orca: unclear why (m_config.ooze_prevention && this->extruders().size() > 1) logic is here, removed.
|
||||
// return (m_config.draft_shield == dsEnabled && m_config.skirt_loops > 0) || (m_config.ooze_prevention && this->extruders().size() > 1);
|
||||
|
||||
return (m_config.draft_shield == dsEnabled && m_config.skirt_loops > 0);
|
||||
}
|
||||
|
||||
bool Print::has_skirt() const
|
||||
|
||||
Reference in New Issue
Block a user