Fixed some background processing synchronization issues.
This commit is contained in:
parent
aaab549cfa
commit
103af1d8fb
2 changed files with 6 additions and 3 deletions
|
@ -695,6 +695,7 @@ Print::ApplyStatus Print::apply(const Model &model, const DynamicPrintConfig &co
|
||||||
tbb::mutex::scoped_lock lock(this->state_mutex());
|
tbb::mutex::scoped_lock lock(this->state_mutex());
|
||||||
|
|
||||||
// The following call may stop the background processing.
|
// The following call may stop the background processing.
|
||||||
|
if (! print_diff.empty())
|
||||||
update_apply_status(this->invalidate_state_by_config_options(print_diff));
|
update_apply_status(this->invalidate_state_by_config_options(print_diff));
|
||||||
// Apply variables to placeholder parser. The placeholder parser is used by G-code export,
|
// Apply variables to placeholder parser. The placeholder parser is used by G-code export,
|
||||||
// which should be stopped if print_diff is not empty.
|
// which should be stopped if print_diff is not empty.
|
||||||
|
|
|
@ -130,7 +130,9 @@ SLAPrint::ApplyStatus SLAPrint::apply(const Model &model,
|
||||||
tbb::mutex::scoped_lock lock(this->state_mutex());
|
tbb::mutex::scoped_lock lock(this->state_mutex());
|
||||||
|
|
||||||
// The following call may stop the background processing.
|
// The following call may stop the background processing.
|
||||||
|
if (! printer_diff.empty())
|
||||||
update_apply_status(this->invalidate_state_by_config_options(printer_diff));
|
update_apply_status(this->invalidate_state_by_config_options(printer_diff));
|
||||||
|
if (! material_diff.empty())
|
||||||
update_apply_status(this->invalidate_state_by_config_options(material_diff));
|
update_apply_status(this->invalidate_state_by_config_options(material_diff));
|
||||||
|
|
||||||
// It is also safe to change m_config now after this->invalidate_state_by_config_options() call.
|
// It is also safe to change m_config now after this->invalidate_state_by_config_options() call.
|
||||||
|
|
Loading…
Add table
Reference in a new issue