FIX: the option to adjust the first layer flow

Change-Id: Icf0c2686cc78c26724438ddc80d1894ac50ec179
Signed-off-by: wenjie.guo <wenjie.guo@bambulab.com>
This commit is contained in:
wenjie.guo 2023-07-20 10:28:39 +08:00 committed by Lane.Wei
parent 646cd5a209
commit a321121acc
5 changed files with 10 additions and 8 deletions

View file

@ -713,9 +713,9 @@ void PrintConfigDef::init_fff_params()
def->mode = comDevelop;
def->set_default_value(new ConfigOptionFloat(1));
def = this->add("bottom_solid_infill_flow_ratio", coFloat);
def->label = L("Bottom surface flow ratio");
def->tooltip = L("This factor affects the amount of material for bottom solid infill");
def = this->add("initial_layer_flow_ratio", coFloat);
def->label = L("Initial layer flow ratio");
def->tooltip = L("This factor affects the amount of material for the initial layer");
def->min = 0;
def->max = 2;
def->mode = comDevelop;
@ -4155,6 +4155,8 @@ void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &va
opt_key = "enable_prime_tower";
} else if (opt_key == "wipe_tower_width") {
opt_key = "prime_tower_width";
} else if (opt_key == "bottom_solid_infill_flow_ratio") {
opt_key = "initial_layer_flow_ratio";
} else if (opt_key == "wiping_volume") {
opt_key = "prime_volume";
} else if (opt_key == "wipe_tower_brim_width") {