Fix fill bed and disable arranging after adding / removing instances (#11619)

This commit is contained in:
yw4z
2025-12-19 11:32:14 +03:00
committed by GitHub
parent 4d8581cd47
commit 380ea7e2e8
2 changed files with 9 additions and 9 deletions

View File

@@ -342,7 +342,7 @@ void FillBedJob::finalize(bool canceled, std::exception_ptr &eptr)
//model_object->ensure_on_bed();
//BOOST_LOG_TRIVIAL(debug) << __FUNCTION__ << ": model_object->ensure_on_bed()";
if (m_instances && wxGetApp().app_config->get("auto_arrange") == "true") {
if (m_instances) {// && wxGetApp().app_config->get("auto_arrange") == "true") {
m_plater->set_prepare_state(Job::PREPARE_STATE_MENU);
m_plater->arrange();
}