From e199dd5b2002fa8866d491442acc634f7fcca968 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 30 Jun 2021 14:32:39 +0200 Subject: [PATCH] Follow-up https://github.com/prusa3d/PrusaSlicer/commit/88d5f40b7c7c0c8ca19ac60dfdb12719a32e1917 - Small fix for text formatting --- src/slic3r/GUI/GUI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp index 9fd7f6af1..db092c85c 100644 --- a/src/slic3r/GUI/GUI.cpp +++ b/src/slic3r/GUI/GUI.cpp @@ -333,9 +333,9 @@ void show_substitutions_info(const ConfigSubstitutions& config_substitutions, co if (!changes.IsEmpty()) changes += "\n\n"; - wxString message = format(_L("Loading %1% file found incompatibilities.\n" + wxString message = format(_L("Loading %1% file found incompatibilities.\n" "To recover this file, incompatible values were changed to default values:%2%" - "But data in files won't be changed until you save them in PrusaSlicer."), from_u8(filename), changes); + "But data in files won't be changed until you save them in PrusaSlicer."), bold(from_u8(filename)), changes); InfoDialog msg(nullptr, message); msg.ShowModal();