ENH: add more wiki links
jira:NEW Signed-off-by: XunZhangBambu <xun.zhang@bambulab.com> Change-Id: I2445305fee4d04040d4b81ef07e38709c67ad487
This commit is contained in:
parent
62c775b232
commit
bdc1ffb4d5
|
@ -1889,7 +1889,7 @@ void TabPrint::build()
|
|||
auto page = add_options_page(L("Quality"), "empty");
|
||||
auto optgroup = page->new_optgroup(L("Layer height"), L"param_layer_height");
|
||||
optgroup->append_single_option_line("layer_height", "layer-height");
|
||||
optgroup->append_single_option_line("initial_layer_print_height");
|
||||
optgroup->append_single_option_line("initial_layer_print_height", "layer-height");
|
||||
|
||||
optgroup = page->new_optgroup(L("Line width"), L"param_line_width");
|
||||
optgroup->append_single_option_line("line_width","parameter/line-width");
|
||||
|
@ -3054,9 +3054,9 @@ void TabFilament::build()
|
|||
line.append_option(optgroup->get_option("fan_max_speed"));
|
||||
line.append_option(optgroup->get_option("slow_down_layer_time"));
|
||||
optgroup->append_line(line);
|
||||
optgroup->append_single_option_line("reduce_fan_stop_start_freq");
|
||||
optgroup->append_single_option_line("reduce_fan_stop_start_freq", "auto-cooling");
|
||||
optgroup->append_single_option_line("slow_down_for_layer_cooling", "auto-cooling");
|
||||
optgroup->append_single_option_line("slow_down_min_speed");
|
||||
optgroup->append_single_option_line("slow_down_min_speed","auto-cooling");
|
||||
|
||||
optgroup->append_single_option_line("enable_overhang_bridge_fan", "auto-cooling");
|
||||
optgroup->append_single_option_line("overhang_fan_threshold", "auto-cooling");
|
||||
|
@ -3316,7 +3316,7 @@ void TabPrinter::build_fff()
|
|||
auto page = add_options_page(L("Basic information"), "printer");
|
||||
auto optgroup = page->new_optgroup(L("Printable space")/*, L"param_printable_space"*/);
|
||||
|
||||
create_line_with_widget(optgroup.get(), "printable_area", "custom-svg-and-png-bed-textures_124612", [this](wxWindow* parent) {
|
||||
create_line_with_widget(optgroup.get(), "printable_area", "", [this](wxWindow* parent) {
|
||||
return create_bed_shape_widget(parent);
|
||||
});
|
||||
|
||||
|
@ -3852,8 +3852,8 @@ void TabPrinter::build_unregular_pages(bool from_initial_build/* = false*/)
|
|||
};
|
||||
|
||||
optgroup = page->new_optgroup(L("Layer height limits"), L"param_layer_height", -1, true);
|
||||
optgroup->append_single_option_line("min_layer_height", "", extruder_idx);
|
||||
optgroup->append_single_option_line("max_layer_height", "", extruder_idx);
|
||||
optgroup->append_single_option_line("min_layer_height", "adaptive-layer-height", extruder_idx);
|
||||
optgroup->append_single_option_line("max_layer_height", "adaptive-layer-height", extruder_idx);
|
||||
|
||||
optgroup = page->new_optgroup(L("Position"), L"param_retraction", -1, true);
|
||||
optgroup->append_single_option_line("extruder_offset", "", extruder_idx);
|
||||
|
|
Loading…
Reference in New Issue