mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-01 20:40:41 -07:00
FIX:load not bbs 3mf which can load in https://imagetostl.com/view-3mf-online#convert
jira: STUDIO-12000 Change-Id: I80ddc4988807d67e9549c75ccc94744889b9e2ac (cherry picked from commit a742ed722271909ece4a6d7827f311e9fe104488) (cherry picked from commit 6e095141b66309983d4df8c8fce12d779e25d262)
This commit is contained in:
parent
3bfeb2dc0b
commit
d8cd5d4ceb
1 changed files with 4 additions and 2 deletions
|
|
@ -1837,8 +1837,10 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result)
|
|||
else if (boost::algorithm::iequals(name, BBS_MODEL_CONFIG_FILE)) {
|
||||
// extract slic3r model config file
|
||||
if (!_extract_xml_from_archive(archive, stat, _handle_start_config_xml_element, _handle_end_config_xml_element)) {
|
||||
add_error("Archive does not contain a valid model config");
|
||||
return false;
|
||||
if (m_is_bbl_3mf) {
|
||||
add_error("Archive does not contain a valid model config");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (_is_svg_shape_file(name)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue