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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-02-22 18:06:35 +0300
committerbubnikv <bubnikv@gmail.com>2017-02-22 18:06:35 +0300
commitf7acb20e2382b5f8dc4549d3a6c9adb29ff74027 (patch)
tree633d2862d7d98c6761af10fee486929ae08cee1b /xs
parenta4dd6c7ce5b6238ef4b445ec6fccbc8f13683e82 (diff)
Changed defaults for the perimeter/infill overlap (15-55%)
and for the infill pattern (honeycomb->stars)
Diffstat (limited to 'xs')
-rw-r--r--xs/src/libslic3r/PrintConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp
index d7cb66d03..cae0479d6 100644
--- a/xs/src/libslic3r/PrintConfig.cpp
+++ b/xs/src/libslic3r/PrintConfig.cpp
@@ -449,7 +449,7 @@ PrintConfigDef::PrintConfigDef()
def->enum_labels.push_back("Hilbert Curve");
def->enum_labels.push_back("Archimedean Chords");
def->enum_labels.push_back("Octagram Spiral");
- def->default_value = new ConfigOptionEnum<InfillPattern>(ipHoneycomb);
+ def->default_value = new ConfigOptionEnum<InfillPattern>(ipStars);
def = this->add("first_layer_acceleration", coFloat);
def->label = "First layer";
@@ -605,7 +605,7 @@ PrintConfigDef::PrintConfigDef()
def->sidetext = "mm or %";
def->cli = "infill-overlap=s";
def->ratio_over = "perimeter_extrusion_width";
- def->default_value = new ConfigOptionFloatOrPercent(15, true);
+ def->default_value = new ConfigOptionFloatOrPercent(55, true);
def = this->add("infill_speed", coFloat);
def->label = "Infill";