mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-04 13:57:43 -07:00
ENH:optimize device page lag
jira:[none] Change-Id: I0f6f1b257922d0e25152df9d42814551fa4a89ae (cherry picked from commit 570751668e120b92953593c38bf2469474e98d8f)
This commit is contained in:
parent
048f91be5c
commit
ac3ead14d2
6 changed files with 28 additions and 71 deletions
|
|
@ -1551,7 +1551,7 @@ bool SelectMachineDialog::is_nozzle_type_match(ExtderData data) {
|
|||
for (std::map<int, std::string>::iterator it = used_extruders_flow.begin(); it!= used_extruders_flow.end(); it++) {
|
||||
int target_machine_nozzle_id = map_extruders[it->first];
|
||||
|
||||
if (target_machine_nozzle_id <= flow_type_of_machine.size()) {
|
||||
if (target_machine_nozzle_id < flow_type_of_machine.size()) {
|
||||
if (flow_type_of_machine[target_machine_nozzle_id] != used_extruders_flow[it->first]) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue