mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-03 21:40:37 -07:00
FIX: PrintStatusFilamentWarningHighChamberTempCloseDoor
JIRA: [STUDIO-13676] Change-Id: Ia9405ebbbad69ccc2407fdecb4a15b39c1caec58 (cherry picked from commit a81d8720b9f8c157faa55300b3f1afd4c0e46ea9)
This commit is contained in:
parent
88222a5f64
commit
d852ceddc6
1 changed files with 2 additions and 2 deletions
|
|
@ -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; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue