FIX: update the plate check texts

jira: [STUDIO-10813]
Change-Id: I0304908f7819be1482744e253332bfca1044732e
(cherry picked from commit 3bd7bee74308566e15ae5f9ec4070386b38cc8c1)
This commit is contained in:
xin.zhang
2025-03-12 12:08:05 +08:00
committed by Noisyfox
parent b5dadd160a
commit d1d4a68a8f
7 changed files with 27 additions and 1 deletions

View File

@@ -3397,6 +3397,10 @@ int MachineObject::parse_json(std::string payload, bool key_field_only)
}
}
if(jj.contains("support_build_plate_marker_detect_type") && jj["support_build_plate_marker_detect_type"].is_number()) {
m_plate_maker_detect_type = (PlateMakerDectect)jj["support_build_plate_marker_detect_type"].get<int>();
}
if (jj.contains("support_flow_calibration") && jj["support_flow_calibration"].is_boolean())
{
is_support_flow_calibration = jj["support_flow_calibration"].get<bool>();