From af32339e1a5ddbb5c39a9c4ab32d595b9da102ab Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Wed, 15 Oct 2025 20:10:40 +0800 Subject: [PATCH] Update color & text --- src/slic3r/GUI/MsgDialog.cpp | 2 +- src/slic3r/GUI/Preferences.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/MsgDialog.cpp b/src/slic3r/GUI/MsgDialog.cpp index f85831cfa2..afafad803e 100644 --- a/src/slic3r/GUI/MsgDialog.cpp +++ b/src/slic3r/GUI/MsgDialog.cpp @@ -332,7 +332,7 @@ static void add_msg_content(wxWindow *parent, msg_escaped = std::string("
") + msg_escaped + "
"; if (!link_text.IsEmpty() && link_callback) { - msg_escaped += "" + std::string(link_text.ToUTF8().data()) + ""; + msg_escaped += "" + std::string(link_text.ToUTF8().data()) + ""; } html->SetPage("" + wxString::FromUTF8(msg_escaped.data()) + ""); diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index bb80db9fbb..d73955cdc6 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -1396,7 +1396,7 @@ void PreferencesDialog::create_items() auto item_ams_blacklist = create_item_checkbox(_L("Skip AMS blacklist check"), "", "skip_ams_blacklist_check"); g_sizer->Add(item_ams_blacklist); - auto item_mix_print_high_low_temperature = create_item_checkbox(_L("Remove the restriction on mixed printing of high and low temperature filaments."), _L("With this option enabled, you can print materials with a large temperature difference together."), "enable_high_low_temp_mixed_printing"); + auto item_mix_print_high_low_temperature = create_item_checkbox(_L("Remove mixed temperature restriction"), _L("With this option enabled, you can print materials with a large temperature difference together."), "enable_high_low_temp_mixed_printing"); g_sizer->Add(item_mix_print_high_low_temperature); g_sizer->Add(create_item_title(_L("Log Level")), 1, wxEXPAND);