Fix: modify the max_k_value

jira: none
Change-Id: I5c2a9d00f63ee310cdc144521da6d37e70fd23d1
(cherry picked from commit 8c5a202f4ac05e8109e148e9ef32844f0dec6805)
This commit is contained in:
zhimin.zeng 2025-01-13 19:34:48 +08:00 committed by lane.wei
parent d833ab7d48
commit 0ab64d0cce
1 changed files with 1 additions and 1 deletions

View File

@ -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<PrintJob> CalibUtils::print_job;
wxString wxstr_temp_dir = fs::path(fs::temp_directory_path() / "calib").wstring();