From c31a55c6e0be0a9c50116a1fd6cb90c8cd0f9ffa Mon Sep 17 00:00:00 2001 From: Wegerich Date: Wed, 22 Jul 2026 13:48:28 +0100 Subject: [PATCH] Remove numeric concatenation when offering shared profiles (#14875) Co-authored-by: yw4z --- src/slic3r/GUI/NotificationManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/NotificationManager.cpp b/src/slic3r/GUI/NotificationManager.cpp index 175783f5ab..8e81f0654c 100644 --- a/src/slic3r/GUI/NotificationManager.cpp +++ b/src/slic3r/GUI/NotificationManager.cpp @@ -2338,7 +2338,7 @@ void NotificationManager::SharedProfilesNotification::render_text(ImGuiWrapper& { float hyper_y = starting_y + m_endlines.size() * shift_y + m_line_height * .5f; float dont_show_y = hyper_y + ImGui::CalcTextSize((m_hypertext + " ").c_str()).y + m_line_height * .5f; - std::string dont_show_text = _u8L("Don't show again") + std::to_string(m_endlines.size()); + std::string dont_show_text = _u8L("Don't show again"); ImVec2 part_size = ImGui::CalcTextSize(dont_show_text.c_str()); if (!m_multiline && m_lines_count > 2) {