From 0d262116881b539f799c4d93815b22a9b4c59745 Mon Sep 17 00:00:00 2001 From: Erwin Ried <1091420+eried@users.noreply.github.com> Date: Thu, 17 Jul 2025 15:48:31 +0200 Subject: [PATCH] Update StatusPanel.cpp (cherry picked from commit bf8fa891587c80bd2bbc6562d683392a04a2d106) --- 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 0d09b9b93b..2fdb906cec 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -4944,7 +4944,7 @@ void StatusPanel::on_lamp_switch(wxCommandEvent &event) obj->command_set_chamber_light2(MachineObject::LIGHT_EFFECT::LIGHT_EFFECT_ON); } else { if (obj->m_lamp_close_recheck) { - MessageDialog msg_dlg(nullptr, _L("Turning off the lights during the task will cause the failure of AI monitoring, like spaghetti dectection. Please choose carefully."), wxEmptyString, wxICON_WARNING | wxOK | wxCANCEL); + MessageDialog msg_dlg(nullptr, _L("Turning off the lights during the task will cause the failure of AI monitoring, like spaghetti detection. Please choose carefully."), wxEmptyString, wxICON_WARNING | wxOK | wxCANCEL); msg_dlg.SetButtonLabel(wxID_OK, _L("Keep it On")); msg_dlg.SetButtonLabel(wxID_CANCEL, _L("Turn it Off")); if (msg_dlg.ShowModal() != wxID_CANCEL) {