mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Fixed synchronization of background processing with the front end.
This commit is contained in:
parent
22dbcbcd9c
commit
48173e2a55
4 changed files with 66 additions and 32 deletions
|
@ -570,9 +570,16 @@ bool PrintObject::invalidate_step(PrintObjectStep step)
|
|||
// It also decides about what the wipe_into_infill / wipe_into_object features will do,
|
||||
// and that too depends on many of the settings.
|
||||
invalidated |= m_print->invalidate_step(psWipeTower);
|
||||
// Invalidate G-code export in any case.
|
||||
invalidated |= m_print->invalidate_step(psGCodeExport);
|
||||
return invalidated;
|
||||
}
|
||||
|
||||
bool PrintObject::invalidate_all_steps()
|
||||
{
|
||||
return Inherited::invalidate_all_steps() | m_print->invalidate_all_steps();
|
||||
}
|
||||
|
||||
bool PrintObject::has_support_material() const
|
||||
{
|
||||
return m_config.support_material
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue