From 5c05bd269850298a39d4ad31168ae6105d45084d Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Thu, 12 Dec 2024 18:18:34 +0800 Subject: [PATCH] ENH: some fix of previous commit fix for I5cabae467c62391156e7af1fb99afc0b18400fb6 Change-Id: Ib8bf0bd09ad284808ce8343d4b420726dde3f393 --- src/slic3r/GUI/StatusPanel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index da941a54b..1ac097f3e 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -3324,9 +3324,9 @@ void StatusPanel::on_axis_ctrl_xy(wxCommandEvent &event) if (event.GetInt() == 7) { obj->command_axis_control("X", 1.0, 1.0f, 3000); } if (event.GetInt() == 8) { if (axis_go_home_dlg == nullptr) { - axis_go_home_dlg = new SecondaryCheckDialog(this->GetParent(), wxID_ANY, _L("Auto homing")); - axis_go_home_dlg->update_text(_L("Are you sure you want to trigger auto homing?")); - axis_go_home_dlg->m_button_ok->SetLabel(_L("Homing")); + axis_go_home_dlg = new SecondaryCheckDialog(this->GetParent(), wxID_ANY, _L("Axis go home")); + axis_go_home_dlg->update_text(_L("Are you sure you want to home now?")); + axis_go_home_dlg->m_button_ok->SetLabel(_L("Home")); axis_go_home_dlg->Bind(EVT_SECONDARY_CHECK_CONFIRM, [this](wxCommandEvent& e) { if (obj) { BOOST_LOG_TRIVIAL(info) << "Axis have go home";