From d852ceddc60ba51dc022c290258438d4ee239012 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Mon, 13 Oct 2025 16:27:27 +0800 Subject: [PATCH] FIX: PrintStatusFilamentWarningHighChamberTempCloseDoor JIRA: [STUDIO-13676] Change-Id: Ia9405ebbbad69ccc2407fdecb4a15b39c1caec58 (cherry picked from commit a81d8720b9f8c157faa55300b3f1afd4c0e46ea9) --- src/slic3r/GUI/SelectMachine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index ccfb993c26..798503a5fb 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -3557,11 +3557,11 @@ void SelectMachineDialog::update_show_status(MachineObject* obj_) } if (obj_->GetConfig()->HasChamber()) { - const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment."), filament_strs); + const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment.Please close the door."), filament_strs); show_status(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTempCloseDoor, { msg }); if (PrePrintChecker::is_error(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTempCloseDoor)) { return; } } else { - const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment.Please close the door."), filament_strs); + const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment."), filament_strs); show_status(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTemp, { msg }); if (PrePrintChecker::is_error(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTemp)) { return; } }