From 52cfb30119ff324b202ab768ff01cf883a24eaed Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Thu, 16 Jan 2025 15:07:49 +0800 Subject: [PATCH] FIX: update the check logic jira: [STUDIO-9715] Change-Id: I38fcc7fb45c34b2ff675807b7dcbcd1aaa20449c --- src/slic3r/GUI/StatusPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index ae89c4e68..0a3bbadd9 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -3885,7 +3885,7 @@ void StatusPanel::on_set_chamber_temp() m_tempCtrl_chamber->Warning(false); } - if (chamber_temp > obj->chamber_temp_switch_heat) + if (chamber_temp >= obj->chamber_temp_switch_heat) { delete champer_switch_head_dlg; champer_switch_head_dlg = new MessageDialog(nullptr, _L("If the chamber temperature exceeds 40\u2103, the system will automatically switch to heating mode. Please confirm whether to switch."), wxEmptyString, wxICON_WARNING | wxOK | wxCANCEL);