From ce09b062d731b2511a469773356fd8971ea8fd9c Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Wed, 24 Jan 2024 16:06:21 +0800 Subject: [PATCH] FIX: Flow calibration stage incorrect when switching printers Jira: 6093 Change-Id: I41f1ac10ac9422ac808eab3254f32ea14a0d3b76 --- src/slic3r/GUI/CalibrationWizardPresetPage.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/CalibrationWizardPresetPage.cpp b/src/slic3r/GUI/CalibrationWizardPresetPage.cpp index ea0f5127a..f99cfc7ef 100644 --- a/src/slic3r/GUI/CalibrationWizardPresetPage.cpp +++ b/src/slic3r/GUI/CalibrationWizardPresetPage.cpp @@ -131,10 +131,12 @@ void CaliPresetCaliStagePanel::set_flow_ratio_value(float flow_ratio) void CaliPresetCaliStagePanel::set_flow_ratio_calibration_type(FlowRatioCalibrationType type) { if (type == COMPLETE_CALIBRATION) { m_complete_radioBox->SetValue(true); + m_stage = CaliPresetStage::CALI_MANUAL_STAGE_1; input_panel->Hide(); } else if (type == FINE_CALIBRATION) { m_fine_radioBox->SetValue(true); + m_stage = CaliPresetStage::CALI_MANUAL_STAGE_2; input_panel->Show(); } GetParent()->Layout();