From 5865788d7a7649e47d681f75f7179894fbc32b11 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Thu, 15 Jun 2023 13:51:23 +0200 Subject: [PATCH] Fix of parameters in InfoDilaog followup 23a72cec1f2e1b4795846078dafab332ca27d778 --- src/slic3r/GUI/Plater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 349d3b6ff..7c5c3a35f 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4254,8 +4254,8 @@ bool Plater::priv::warnings_dialog() text += it.first.message; } //MessageDialog msg_wingow(this->q, from_u8(text), wxString(SLIC3R_APP_NAME " ") + _L("generated warnings"), wxOK); - // Changed ti InfoDialog so it can show hyperlinks - InfoDialog msg_wingow(this->q, wxString(SLIC3R_APP_NAME " ") + _L("generated warnings"), from_u8(text), wxOK); + // Changed to InfoDialog so it can show hyperlinks + InfoDialog msg_wingow(this->q, format_wxstr("%1% %2%", SLIC3R_APP_NAME, _L("generated warnings")), from_u8(text), true); const auto res = msg_wingow.ShowModal(); return res == wxID_OK;