From 13dc92363ca0235139dd9f80e02bee7b6d5697bc Mon Sep 17 00:00:00 2001 From: tao wang Date: Tue, 19 Sep 2023 17:55:00 +0800 Subject: [PATCH] NEW:the chamber temperature setting cannot be lower than 40 jira:[new] Change-Id: I1387deb42c60cd9c7bedf115d99f36b0de6f2807 --- src/slic3r/GUI/DeviceManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index 6ea4f8de0..30f4804cf 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -2941,6 +2941,10 @@ int MachineObject::parse_json(std::string payload) wxString text = _L("Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to avoid extruder clogging,it is not allowed to set the chamber temperature above 45\u2103."); GUI::wxGetApp().show_dialog(text); } + else if (jj["errno"].get() == -4) { + wxString text = _L("When you set the chamber temperature below 40\u2103, the chamber temperature control will not be activated. And the target chamber temperature will automatically be set to 0\u2103."); + GUI::wxGetApp().show_dialog(text); + } } } }