From d6b11a676e8b2d57991cab2512e2e323eb8fa0ea Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Tue, 4 Jul 2023 20:57:55 +0800 Subject: [PATCH] FIX: cannot send fine flow ratio cali Change-Id: Ib05d751100692298942e692f2c3dc5ef69286387 --- src/slic3r/GUI/CalibrationWizardSavePage.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/slic3r/GUI/CalibrationWizardSavePage.cpp b/src/slic3r/GUI/CalibrationWizardSavePage.cpp index 11877b27d..51515e541 100644 --- a/src/slic3r/GUI/CalibrationWizardSavePage.cpp +++ b/src/slic3r/GUI/CalibrationWizardSavePage.cpp @@ -1022,9 +1022,6 @@ void CalibrationFlowCoarseSavePage::set_curr_flow_ratio(const float value) { } bool CalibrationFlowCoarseSavePage::get_result(float* out_value, wxString* out_name) { - if (!m_skip_fine_calibration) - return false; - // Check if the value is valid if (m_coarse_flow_ratio <= 0.0 || m_coarse_flow_ratio >= 2.0) { MessageDialog msg_dlg(nullptr, _L("Please choose a block with smoothest top surface"), wxEmptyString, wxICON_WARNING | wxOK);