From 70b9bedf94b3ce6d5fe96c285fa71ba2a4c7e6ad Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 18 Mar 2026 17:50:39 +0800 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/libslic3r/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 2576d7956c..6463338f7d 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1238,7 +1238,7 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons* for (const PrintObject* object : m_objects) { if (object->config().precise_z_height.value && warning != nullptr) { StringObjectException warningtemp; - warningtemp.string = L("Enabling both precise Z height and the prime tower may cause the slicing errors."); + warningtemp.string = L("Enabling both precise Z height and the prime tower may cause slicing errors."); warningtemp.opt_key = "precise_z_height"; warningtemp.is_warning = true; *warning = warningtemp;