From 0ab64d0ccecb038d7cc928c8ca0fe61911c93d0e Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Mon, 13 Jan 2025 19:34:48 +0800 Subject: [PATCH] Fix: modify the max_k_value jira: none Change-Id: I5c2a9d00f63ee310cdc144521da6d37e70fd23d1 (cherry picked from commit 8c5a202f4ac05e8109e148e9ef32844f0dec6805) --- src/slic3r/Utils/CalibUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/Utils/CalibUtils.cpp b/src/slic3r/Utils/CalibUtils.cpp index e8d766f5f..f08587b17 100644 --- a/src/slic3r/Utils/CalibUtils.cpp +++ b/src/slic3r/Utils/CalibUtils.cpp @@ -12,7 +12,7 @@ namespace Slic3r { namespace GUI { const float MIN_PA_K_VALUE = 0.0; -const float MAX_PA_K_VALUE = 1.0; +const float MAX_PA_K_VALUE = 2.0; std::shared_ptr CalibUtils::print_job; wxString wxstr_temp_dir = fs::path(fs::temp_directory_path() / "calib").wstring();