From 3a49e2f5165736ffca9c13526e5b5b8b9f4180e2 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Wed, 9 Jul 2025 17:26:48 +0800 Subject: [PATCH] FIX: correct the tool tip jira: [STUDIO-13302] Change-Id: I745e6d05f78fa4f025237f70c7af424cc9c204a0 (cherry picked from commit e2fa14270c8767e53e2c023ccfec203504f38822) --- src/slic3r/GUI/AmsMappingPopup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/AmsMappingPopup.cpp b/src/slic3r/GUI/AmsMappingPopup.cpp index 235213ebf3..e076881063 100644 --- a/src/slic3r/GUI/AmsMappingPopup.cpp +++ b/src/slic3r/GUI/AmsMappingPopup.cpp @@ -1570,7 +1570,7 @@ void MappingItem::set_data(const wxString &tag_name, wxColour colour, wxString n if (!m_name.IsEmpty() && (m_name != "-")) { const wxString &msg = wxString::Format(_L("Note: the filament type(%s) does not match with the filament type(%s) in the slicing file. " "If you want to use this slot, you can install %s instead of %s and change slot information on the 'Device' page."), - m_name, tag_name, m_name, tag_name); + m_name, tag_name, tag_name, m_name); SetToolTip(msg); } else { const wxString &msg = wxString::Format(_L("Note: the slot is empty or undefined. If you want to use this slot, you can install %s and change slot information on the 'Device' page."), tag_name);