From 6b3ccc543d7274a42f32a255c228323f311a6101 Mon Sep 17 00:00:00 2001 From: "hang.xu" Date: Thu, 22 Aug 2024 12:08:57 +0800 Subject: [PATCH] FIX:Change text in stop printing dialog jira: STUDIO-7899 Change-Id: Ic93f7322aa35c06dd98df2b70c9f24f94a62467c (cherry picked from commit b2418c74172364f875a08844fd7bb103a849a973) --- src/slic3r/GUI/StatusPanel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index f95e13e8ec..8d11e61688 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -1971,7 +1971,8 @@ 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_ok->SetLabel(_L("Stop")); abort_dlg->on_show(); }