FIX: modify the flow rate cali button type

Change-Id: I7aa1254564c120e93a104065971e7c1626785411
(cherry picked from commit 29385e71d00d264e2aaf6cf6181156d6ed9f6bc1)
This commit is contained in:
zhimin.zeng 2023-07-07 20:47:49 +08:00 committed by Lane.Wei
parent a93d09cc30
commit d304ee8717
3 changed files with 6 additions and 3 deletions

View file

@ -651,6 +651,9 @@ void FlowRateWizard::on_cali_action(wxCommandEvent& evt)
else if (action == CaliPageActionType::CALI_ACTION_NEXT) {
show_step(m_curr_step->next);
}
else if (action == CaliPageActionType::CALI_ACTION_CALI_NEXT) {
show_step(m_curr_step->next);
}
else if (action == CaliPageActionType::CALI_ACTION_PREV) {
show_step(m_curr_step->prev);
}