diff --git a/src/slic3r/GUI/CalibrationWizardCaliPage.cpp b/src/slic3r/GUI/CalibrationWizardCaliPage.cpp index 7621f4be9..f4a12e6db 100644 --- a/src/slic3r/GUI/CalibrationWizardCaliPage.cpp +++ b/src/slic3r/GUI/CalibrationWizardCaliPage.cpp @@ -93,6 +93,7 @@ void CalibrationCaliPage::on_subtask_abort(wxCommandEvent& event) }); } abort_dlg->update_text(_L("Are you sure you want to cancel this print?")); + abort_dlg->update_btn_label(_L("Yes"), _L("No")); abort_dlg->on_show(); } diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index da2ccd9ee..e93fbd928 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -1938,6 +1938,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_btn_label(_L("Yes"), _L("No")); abort_dlg->m_button_cancel->SetBackgroundColor(abort_dlg->btn_bg_green); abort_dlg->m_button_cancel->SetBorderColor(*wxWHITE);