ENH:update pre print options

jira:[for multi]

Change-Id: I2e9bb8a09436a71749af98a0bad94e9922f95c81
This commit is contained in:
tao wang 2024-04-19 15:05:38 +08:00 committed by Lane.Wei
parent 2d6a75f557
commit c1376b76cb
1 changed files with 3 additions and 3 deletions

View File

@ -401,9 +401,9 @@ BBL::PrintParams SendMultiMachinePage::request_params(MachineObject* obj)
BBL::PrintParams params;
//get all setting
bool bed_leveling = app_config->get("bed_leveling") == "1" ? true : false;
bool flow_cali = app_config->get("flow_cali") == "1" ? true : false;
bool timelapse = app_config->get("timelapse") == "1" ? true : false;
bool bed_leveling = app_config->get("print", "bed_leveling") == "1" ? true : false;
bool flow_cali = app_config->get("print", "flow_cali") == "1" ? true : false;
bool timelapse = app_config->get("print", "timelapse") == "1" ? true : false;
auto use_ams = false;
AmsRadioSelectorList::Node* node = m_radio_group.GetFirst();