ENH: 3mf: don't add object unprintable into skip list
JIRA: no-jira Change-Id: I1f7f55265ed9aedde3cf626d088477a89a67a208 (cherry picked from commit 2b121b468cb8c1abecf4d2ebf2a80ff34260647f) (cherry picked from commit 9635928d255b4dded919006f26123c56bdd79d3b)
This commit is contained in:
parent
ba99ca275a
commit
bc04672f50
|
@ -7519,6 +7519,8 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
inst = obj->instances[inst_id];
|
inst = obj->instances[inst_id];
|
||||||
|
if (!inst->printable)
|
||||||
|
continue;
|
||||||
if (m_use_loaded_id && (inst->loaded_id > 0)) {
|
if (m_use_loaded_id && (inst->loaded_id > 0)) {
|
||||||
identify_id = inst->loaded_id;
|
identify_id = inst->loaded_id;
|
||||||
if (identify_id & 0xFF000000) {
|
if (identify_id & 0xFF000000) {
|
||||||
|
|
Loading…
Reference in New Issue