mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-30 05:11:58 +08:00
Fixed an issue that tall skirt is generated when ooze prevention and skirt are both enabled.
This commit is contained in:
parent
13ddb38119
commit
b4cc526ae4
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user