mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06: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
1 changed files with 4 additions and 1 deletions
|
@ -499,7 +499,10 @@ std::vector<ObjectID> Print::print_object_ids() const
|
||||||
|
|
||||||
bool Print::has_infinite_skirt() 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
|
bool Print::has_skirt() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue