From fa650fe83b041459ddd96eb0c03f0be217120e90 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Tue, 4 Jul 2023 21:23:34 +0800 Subject: [PATCH] FIX: fix send error Change-Id: Ia805f51d293ae15ffcb93ea6431f4037ed64de2a --- 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 2178d678e..a280529cf 100644 --- a/src/slic3r/Utils/CalibUtils.cpp +++ b/src/slic3r/Utils/CalibUtils.cpp @@ -434,7 +434,7 @@ void CalibUtils::calib_flowrate(int pass, const CalibInfo& calib_info, std::stri if (!error_message.empty()) return; - send_to_print(calib_info, error_message); + send_to_print(calib_info, error_message, pass); } void CalibUtils::calib_generic_PA(const CalibInfo &calib_info, std::string &error_message)