diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index 1ac097f3e..0cd0319fd 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -1942,8 +1942,7 @@ void StatusPanel::on_subtask_abort(wxCommandEvent &event) } }); } - abort_dlg->update_text(_L("Are you sure you want to cancel this print?")); - + abort_dlg->update_text(_L("Are you sure you want to stop this print?")); abort_dlg->m_button_cancel->SetBackgroundColor(abort_dlg->btn_bg_green); abort_dlg->m_button_cancel->SetBorderColor(*wxWHITE); abort_dlg->m_button_cancel->SetTextColor(wxColor("#FFFFFE")); @@ -1951,6 +1950,7 @@ void StatusPanel::on_subtask_abort(wxCommandEvent &event) abort_dlg->m_button_ok->SetBackgroundColor(abort_dlg->btn_bg_white); abort_dlg->m_button_ok->SetBorderColor(wxColor(38, 46, 48)); abort_dlg->m_button_ok->SetTextColor(*wxBLACK); + abort_dlg->m_button_ok->SetLabel(_L("Stop")); abort_dlg->on_show(); }