mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-17 11:47:54 -06:00
fix loading project issue
This commit is contained in:
parent
996af2b0b6
commit
11679d6858
1 changed files with 4 additions and 0 deletions
|
@ -3171,6 +3171,10 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result)
|
||||||
m_is_bbl_3mf = true;
|
m_is_bbl_3mf = true;
|
||||||
m_bambuslicer_generator_version = Semver::parse(m_curr_characters.substr(12));
|
m_bambuslicer_generator_version = Semver::parse(m_curr_characters.substr(12));
|
||||||
}
|
}
|
||||||
|
else if (boost::starts_with(m_curr_characters, "OrcaSlicer-")) {
|
||||||
|
m_is_bbl_3mf = true;
|
||||||
|
m_bambuslicer_generator_version = Semver::parse(m_curr_characters.substr(11));
|
||||||
|
}
|
||||||
//TODO: currently use version 0, no need to load&&save this string
|
//TODO: currently use version 0, no need to load&&save this string
|
||||||
/*} else if (m_curr_metadata_name == BBS_FDM_SUPPORTS_PAINTING_VERSION) {
|
/*} else if (m_curr_metadata_name == BBS_FDM_SUPPORTS_PAINTING_VERSION) {
|
||||||
m_fdm_supports_painting_version = (unsigned int) atoi(m_curr_characters.c_str());
|
m_fdm_supports_painting_version = (unsigned int) atoi(m_curr_characters.c_str());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue