From 4671aed03bccd131491116677d2a990c5cb724ed Mon Sep 17 00:00:00 2001 From: "yifan.wu" Date: Wed, 9 Nov 2022 10:50:28 +0800 Subject: [PATCH] FIX: slice btn and error msg not updated after changing bed type Signed-off-by: yifan.wu Change-Id: I9ee624de38ef9193c0d9cda9f687dbc49d8c5b28 --- src/slic3r/GUI/PartPlate.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/PartPlate.cpp b/src/slic3r/GUI/PartPlate.cpp index c07458b19..deb799436 100644 --- a/src/slic3r/GUI/PartPlate.cpp +++ b/src/slic3r/GUI/PartPlate.cpp @@ -150,6 +150,8 @@ BedType PartPlate::get_bed_type() const void PartPlate::set_bed_type(BedType bed_type) { m_config.set_key_value("curr_bed_type", new ConfigOptionEnum(bed_type)); + if (m_plater) + m_plater->schedule_background_process(); } void PartPlate::reset_bed_type()