From 27f2f2be62cf69652b2d63aad33d5c95d81253c5 Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Wed, 21 Jan 2026 17:24:44 -0300 Subject: [PATCH] Update help link for symmetric_infill_y_axis option (#12034) Changed the help link for the 'symmetric_infill_y_axis' option from 'strength_settings_patterns#zig-zag' to 'strength_settings_infill#symmetric-infill-y-axis' to provide more accurate documentation. --- src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index d79b151b55..aa45495fb7 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2440,7 +2440,7 @@ void TabPrint::build() optgroup->append_single_option_line("skin_infill_depth", "strength_settings_patterns#locked-zag"); optgroup->append_single_option_line("skin_infill_line_width", "strength_settings_patterns#locked-zag"); optgroup->append_single_option_line("skeleton_infill_line_width", "strength_settings_patterns#locked-zag"); - optgroup->append_single_option_line("symmetric_infill_y_axis", "strength_settings_patterns#zig-zag"); + optgroup->append_single_option_line("symmetric_infill_y_axis", "strength_settings_infill#symmetric-infill-y-axis"); optgroup->append_single_option_line("infill_shift_step", "strength_settings_patterns#cross-hatch"); optgroup->append_single_option_line("lateral_lattice_angle_1", "strength_settings_patterns#lateral-lattice"); optgroup->append_single_option_line("lateral_lattice_angle_2", "strength_settings_patterns#lateral-lattice");