From f7def577df7b52450dc3768a934d51d1c376e843 Mon Sep 17 00:00:00 2001 From: "BBL\\chuan.he" Date: Tue, 20 May 2025 16:15:47 +0800 Subject: [PATCH] fix:generate mo issue --- src/slic3r/GUI/ConfigManipulation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index 572ed9320..fac08c604 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -525,7 +525,7 @@ void ConfigManipulation::update_print_fff_config(DynamicPrintConfig* config, con // layer_height shouldn't be equal to zero float skin_depth = config->opt_float("skin_infill_depth"); if (config->opt_float("infill_lock_depth") > skin_depth) { - const wxString msg_text = _(L("lock depth should smaller than skin depth.\nReset to 50% of skin depth")); + const wxString msg_text = _(L("lock depth should smaller than skin depth.\nReset to 50%% of skin depth")); MessageDialog dialog(m_msg_dlg_parent, msg_text, "", wxICON_WARNING | wxOK); DynamicPrintConfig new_conf = *config; is_msg_dlg_already_exist = true;