FIX: The name in cali save page is not displayed for multi_extruder.
jira: STUDIO-9721 Change-Id: I8906b2d401f87f5ed2f7d143196708251bb2a02e
This commit is contained in:
parent
c0899e05ef
commit
bd5111f12f
|
@ -412,7 +412,10 @@ bool CaliPASaveAutoPanel::get_result(std::vector<PACalibResult>& out_result) {
|
||||||
bool is_valid = true;
|
bool is_valid = true;
|
||||||
wxString err_msg;
|
wxString err_msg;
|
||||||
// Check if the input value is valid and save to m_calib_results
|
// Check if the input value is valid and save to m_calib_results
|
||||||
save_to_result_from_widgets(m_grid_panel, &is_valid, &err_msg);
|
if (m_obj && m_obj->is_multi_extruders())
|
||||||
|
save_to_result_from_widgets(m_multi_extruder_grid_panel, &is_valid, &err_msg);
|
||||||
|
else
|
||||||
|
save_to_result_from_widgets(m_grid_panel, &is_valid, &err_msg);
|
||||||
if (is_valid) {
|
if (is_valid) {
|
||||||
/*
|
/*
|
||||||
std::vector<PACalibResult> to_save_result;
|
std::vector<PACalibResult> to_save_result;
|
||||||
|
|
Loading…
Reference in New Issue