From 6c1b0c29e17ea795c567d8333c42826d11400c28 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Mon, 16 Dec 2024 08:48:45 +0000 Subject: [PATCH] Reorder options as suggested by @discip --- src/slic3r/GUI/Tab.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 583b2bfd865..b421b085db2 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2346,13 +2346,13 @@ page = add_options_page(L("Others"), "custom-gcode_other"); // ORCA: icon only v optgroup->append_single_option_line("timelapse_type", "Timelapse"); optgroup->append_single_option_line("fuzzy_skin"); + optgroup->append_single_option_line("fuzzy_skin_noise_type"); optgroup->append_single_option_line("fuzzy_skin_point_distance"); optgroup->append_single_option_line("fuzzy_skin_thickness"); - optgroup->append_single_option_line("fuzzy_skin_first_layer"); - optgroup->append_single_option_line("fuzzy_skin_noise_type"); optgroup->append_single_option_line("fuzzy_skin_scale"); optgroup->append_single_option_line("fuzzy_skin_octaves"); optgroup->append_single_option_line("fuzzy_skin_persistence"); + optgroup->append_single_option_line("fuzzy_skin_first_layer"); optgroup = page->new_optgroup(L("G-code output"), L"param_gcode"); optgroup->append_single_option_line("reduce_infill_retraction");