From 58c1dd9c98de7521ac4c2bf51449041abac1c743 Mon Sep 17 00:00:00 2001 From: "liz.li" Date: Fri, 22 Mar 2024 15:19:42 +0800 Subject: [PATCH] ENH: add wiki url for Plate Settings Tab jira: new Change-Id: If1489eafeb10e7096c3ae49832c68921d3cfad6f --- src/slic3r/GUI/Tab.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index be37b1575..1d6b22cb2 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2581,10 +2581,10 @@ void TabPrintPlate::build() auto page = add_options_page(L("Plate Settings"), "empty"); auto optgroup = page->new_optgroup(""); optgroup->append_single_option_line("curr_bed_type"); - optgroup->append_single_option_line("print_sequence"); - optgroup->append_single_option_line("spiral_mode"); - optgroup->append_single_option_line("first_layer_sequence_choice"); - optgroup->append_single_option_line("other_layers_sequence_choice"); + optgroup->append_single_option_line("print_sequence", "sequent-print"); + optgroup->append_single_option_line("spiral_mode", "spiral-vase"); + optgroup->append_single_option_line("first_layer_sequence_choice", "parameter/filament-sequence-for-different-layers"); + optgroup->append_single_option_line("other_layers_sequence_choice", "parameter/filament-sequence-for-different-layers"); for (auto& line : const_cast&>(optgroup->get_lines())) { line.undo_to_sys = true;