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 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index a78a2e239..18c913ae5 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -6912,6 +6912,12 @@ std::map<std::string,std::string> PrintConfigDef::from_prusa(t_config_option_key
value = "50%";
}
}
+ if ("resolution" == opt_key) {
+ value = "0.0125";
+ }
+ if ("gcode_resolution" == opt_key) {
+ output["min_length"] = value;
+ }
return output;
}