mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 03:07:55 -06:00
Bugfix: auto-center didn't update the PrintObject copies properly, causing misalignment. #2464
This commit is contained in:
parent
4b7cec28b9
commit
494efe65b2
4 changed files with 29 additions and 27 deletions
|
@ -116,6 +116,16 @@ Print::reload_object(size_t idx)
|
|||
}
|
||||
}
|
||||
|
||||
bool
|
||||
Print::reload_model_instances()
|
||||
{
|
||||
bool invalidated = false;
|
||||
FOREACH_OBJECT(this, object) {
|
||||
if ((*object)->reload_model_instances()) invalidated = true;
|
||||
}
|
||||
return invalidated;
|
||||
}
|
||||
|
||||
void
|
||||
Print::clear_regions()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue