QIDI Prusa

This commit is contained in:
sunsets
2024-03-21 11:29:09 +08:00
parent 470b3a19ed
commit 516d3a3313
9 changed files with 86 additions and 17 deletions

View File

@@ -1,6 +1,5 @@
// Original implementation of STEP format import created by Bambulab.
// https://github.com/bambulab/BambuStudio
// Forked off commit 1555904, modified by QIDI Research.
#ifndef slic3r_Format_STEP_hpp_
#define slic3r_Format_STEP_hpp_

View File

@@ -168,7 +168,7 @@ VendorProfile VendorProfile::from_ini(const ptree &tree, const boost::filesystem
}
model.family = section.second.get<std::string>("family", std::string());
if (model.family.empty() && res.name == "QIDI Research") {
if (model.family.empty() && res.name == "QIDI Technology") {
// If no family is specified, it can be inferred for known printers
const auto from_pre_map = pre_family_model_map.find(model.id);
if (from_pre_map != pre_family_model_map.end()) { model.family = from_pre_map->second; }