ENH:add printable check for devices

Change-Id: I672988fa9cfa986d924bfc64331752f4aef68067
(cherry picked from commit 69de9e5b8334ec94eec7fcee31038b8ff42d1d3b)
This commit is contained in:
tao wang 2024-04-18 20:26:23 +08:00 committed by Lane.Wei
parent b424de749c
commit 0c972155a6
1 changed files with 4 additions and 2 deletions

View File

@ -634,8 +634,10 @@ void SendMultiMachinePage::on_send(wxCommandEvent& event)
if (obj && obj->is_online() && !obj->can_abort() && !obj->is_in_upgrading() && it->second->get_state_selected() == 1 && it->second->state_printable <= 2) {
BBL::PrintParams params = request_params(obj);
print_params.push_back(params);
if (!it->second->is_blocking_printing(obj)) {
BBL::PrintParams params = request_params(obj);
print_params.push_back(params);
}
}
}