Skip to content

Commit

Permalink
Fix "Too small ironing spacing" error in default config
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Jan 15, 2025
1 parent 4c955e5 commit dc67b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3082,7 +3082,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 1;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0));
def->set_default_value(new ConfigOptionFloat(0.1));

def = this->add("ironing_inset", coFloat);
def->label = L("Ironing inset");
Expand Down

0 comments on commit dc67b5c

Please sign in to comment.