From 6b24a977ca8d61b4e3e4b6326691b536ebb57e40 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Sun, 5 Oct 2025 19:45:02 +0800 Subject: [PATCH] Fix nozzle temp settings layout --- src/slic3r/GUI/Tab.cpp | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 529a2536e9..5688f29878 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3742,10 +3742,11 @@ void TabFilament::build() optgroup->append_single_option_line("chamber_temperature", "chamber-temperature"); optgroup->append_single_option_line("activate_chamber_temp_control", "chamber-temperature"); - optgroup->append_separator(); - - optgroup = page->new_optgroup(L("Print temperature"), L"param_extruder_temp"); + line = { L("Nozzle"), L("Nozzle temperature when printing") }; + line.append_option(optgroup->get_option("nozzle_temperature_initial_layer")); + line.append_option(optgroup->get_option("nozzle_temperature")); + optgroup->append_line(line); optgroup = page->new_optgroup(L("Bed temperature"), L"param_bed_temp"); line = { L("Cool Plate (SuperTack)"), @@ -3814,13 +3815,6 @@ void TabFilament::build() on_value_change(opt_key, value); }; - optgroup = page->new_optgroup(L("Nozzle temperature"), L"param_temperature"); - - line = { L("Nozzle"), L("Nozzle temperature when printing") }; - line.append_option(optgroup->get_option("nozzle_temperature_initial_layer")); - line.append_option(optgroup->get_option("nozzle_temperature")); - optgroup->append_line(line); - //BBS optgroup = page->new_optgroup(L("Volumetric speed limitation"), L"param_volumetric_speed"); optgroup->append_single_option_line("filament_adaptive_volumetric_speed", "", 0);