Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/libslic3r/GCode.cpp')
-rw-r--r--xs/src/libslic3r/GCode.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/xs/src/libslic3r/GCode.cpp b/xs/src/libslic3r/GCode.cpp
index 479af7abe..009493113 100644
--- a/xs/src/libslic3r/GCode.cpp
+++ b/xs/src/libslic3r/GCode.cpp
@@ -1415,11 +1415,12 @@ void GCode::append_full_config(const Print& print, std::string& str)
for (size_t i = 0; i < sizeof(configs) / sizeof(configs[0]); ++i) {
const StaticPrintConfig *cfg = configs[i];
for (const std::string &key : cfg->keys())
- {
if (key != "compatible_printers")
str += "; " + key + " = " + cfg->serialize(key) + "\n";
- }
}
+ const DynamicConfig &full_config = print.placeholder_parser.config();
+ for (const char *key : { "print_settings_id", "filament_settings_id", "printer_settings_id" })
+ str += std::string("; ") + key + " = " + full_config.serialize(key) + "\n";
}
void GCode::set_extruders(const std::vector<unsigned int> &extruder_ids)