From 41f99be4d2c154760e7cae99d704e3a52ce4c8cc Mon Sep 17 00:00:00 2001 From: capitalistspz Date: Thu, 30 Jul 2026 21:24:57 +0100 Subject: [PATCH] Correct tooltips on checksum tool buttons --- src/gui/wxgui/ChecksumTool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/wxgui/ChecksumTool.cpp b/src/gui/wxgui/ChecksumTool.cpp index bcaba6b9..f9cf3c90 100644 --- a/src/gui/wxgui/ChecksumTool.cpp +++ b/src/gui/wxgui/ChecksumTool.cpp @@ -142,13 +142,13 @@ ChecksumTool::ChecksumTool(wxWindow* parent, wxTitleManagerList::TitleEntry& ent box_sizer->Add(m_verify_online, 0, wxALL | wxEXPAND, 5); m_verify_local = new wxButton(box, wxID_ANY, _("Verify with local file")); - m_verify_online->SetToolTip(_("Verifies the checksum with a local JSON file you can select")); + m_verify_local->SetToolTip(_("Verifies the checksum with a local JSON file you can select")); m_verify_local->Disable(); m_verify_local->Bind(wxEVT_BUTTON, &ChecksumTool::OnVerifyLocal, this); box_sizer->Add(m_verify_local, 0, wxALL | wxEXPAND, 5); m_export_button = new wxButton(box, wxID_ANY, _("Export")); - m_verify_online->SetToolTip(_("Export the title checksum data to a local JSON file")); + m_export_button->SetToolTip(_("Export the title checksum data to a local JSON file")); m_export_button->Disable(); m_export_button->Bind(wxEVT_BUTTON, &ChecksumTool::OnExportChecksums, this); box_sizer->Add(m_export_button, 0, wxALL | wxEXPAND, 5);